arrange config.Config

This commit is contained in:
A.Unger committed 2020-03-16 11:27:27 +01:00
1 parent fc1389b087
commit 6c1ed02acd
1 file changed
+2 -2
+2 -2
View File
@@ -54,13 +54,13 @@ type Config struct {
File string
Log Log
Debug Debug
HTTP HTTP
HTTP HTTP `mapstructure:"http"`
Tracing Tracing
Asset Asset
Policies []Policy `mapstructure:"policies"`
}
// New initializes a new configuration with or without defaults.
// New initializes a new configuration
func New() *Config {
return &Config{}
}