From d58fc5457470e922c1d6c0b8596c5669554e289a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=9E=D0=BB=D0=B5=D0=B3=20=D0=91=D0=BE=D1=80=D0=BE=D0=B4?= =?UTF-8?q?=D0=B8=D0=BD?= Date: Sun, 24 May 2026 11:14:33 +0200 Subject: [PATCH] fix --- app/config/config.go | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/app/config/config.go b/app/config/config.go index d8dcb24..076a5f3 100644 --- a/app/config/config.go +++ b/app/config/config.go @@ -39,11 +39,11 @@ type Config struct { Keypath string `json:"keypath,omitempty" yaml:"keypath,omitempty"` X509Cert string `json:"-" yaml:"-"` X509Key string `json:"-" yaml:"-"` - Datadir string `json:"datadir" yaml:datadir` - Hostname string `json:"hostname" yaml:hostname` - Hostnames []string `json:"hostnames" yaml:hostnames` - LogLimit int64 `json:"logLimit" yaml:logLimit` - RunUser string `json:"runUser" yaml:runUser` + Datadir string `json:"datadir" yaml:"datadir"` + Hostname string `json:"hostname" yaml:"hostname"` + Hostnames []string `json:"hostnames" yaml:"hostnames"` + LogLimit int64 `json:"logLimit" yaml:"logLimit"` + RunUser string `json:"runUser" yaml:"runUser"` } func NewConfig() *Config {