refactor(simapp): add ,squash flag (#17172)

This commit is contained in:
zakir-code 2023-07-28 17:13:11 +08:00 committed by GitHub
parent 257d3e5e7c
commit 1a331a6f9f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -146,7 +146,7 @@ func initAppConfig() (string, interface{}) {
}
type CustomAppConfig struct {
serverconfig.Config
serverconfig.Config `mapstructure:",squash"`
WASM WASMConfig `mapstructure:"wasm"`
}

View File

@ -156,7 +156,7 @@ func initAppConfig() (string, interface{}) {
}
type CustomAppConfig struct {
serverconfig.Config
serverconfig.Config `mapstructure:",squash"`
WASM WASMConfig `mapstructure:"wasm"`
}