From 6c1ed02acd37bd9b82ee62a1d2ea03035e48b01d Mon Sep 17 00:00:00 2001 From: "A.Unger" Date: Mon, 16 Mar 2020 11:27:27 +0100 Subject: [PATCH] arrange config.Config --- pkg/config/config.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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{} }