From 69e594ace57bd36aa2c006c74a15d30f3fe3298a Mon Sep 17 00:00:00 2001 From: "A.Unger" Date: Tue, 24 Dec 2019 11:41:42 +0100 Subject: [PATCH] move namespace option under HTTP --- pkg/config/config.go | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkg/config/config.go b/pkg/config/config.go index 0f330f7eec..e3f050497b 100644 --- a/pkg/config/config.go +++ b/pkg/config/config.go @@ -17,8 +17,9 @@ type Debug struct { // HTTP defines the available http configuration. type HTTP struct { - Addr string - Root string + Addr string + Root string + Namespace string } // Tracing defines the available tracing configuration. @@ -37,8 +38,7 @@ type Asset struct { // Phoenix defines the available phoenic configuration. type Phoenix struct { - Path string - Namespace string + Path string } // Config combines all available configuration parts.