diff options
Diffstat (limited to 'service/static/config.go')
-rw-r--r-- | service/static/config.go | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/service/static/config.go b/service/static/config.go index be0ac3ed..5df7b013 100644 --- a/service/static/config.go +++ b/service/static/config.go @@ -10,9 +10,6 @@ import ( // Config describes file location and controls access to them. type Config struct { - // Enables StaticFile service. - Enable bool - // Dir contains name of directory to control access to. Dir string @@ -32,10 +29,6 @@ func (c *Config) Hydrate(cfg service.Config) error { // Valid returns nil if config is valid. func (c *Config) Valid() error { - if !c.Enable { - return nil - } - st, err := os.Stat(c.Dir) if err != nil { if os.IsNotExist(err) { |