diff --git a/pkg/config/config.go b/pkg/config/config.go index 3fe87f818..81cb91504 100644 --- a/pkg/config/config.go +++ b/pkg/config/config.go @@ -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{} }