diff options
Diffstat (limited to 'pkg/config/config.go')
-rw-r--r-- | pkg/config/config.go | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/pkg/config/config.go b/pkg/config/config.go index 0c967fd..9fd58de 100644 --- a/pkg/config/config.go +++ b/pkg/config/config.go @@ -7,12 +7,13 @@ import ( ) type Config struct { - Listen string `yaml:"listen"` - Node string `yaml:"node"` - Store string `yaml:"store"` - LoggerType int `yaml:"logger_type"` - Echos map[string]Echo `yaml:"echos"` - Fetch []Node `yaml:"fetch"` + Listen string `yaml:"listen"` + Node string `yaml:"node"` + Store string `yaml:"store"` + LoggerType int `yaml:"logger_type"` + Echos map[string]Echo `yaml:"echos"` + Fetch []Node `yaml:"fetch"` + FilesDirectory string `yaml:"files_directory"` } type Node struct { |