diff options
author | Wolfy-J <[email protected]> | 2018-09-30 17:58:16 +0300 |
---|---|---|
committer | Wolfy-J <[email protected]> | 2018-09-30 17:58:16 +0300 |
commit | 734fab795eb5ee396ee76955c9ddadc4f3b09112 (patch) | |
tree | cec3a313fe207c3f91cd142d6d37202ef4db9494 /service/static | |
parent | 6122fca108c20984732c969fb1ba53cce5b3c44a (diff) |
https and http2 support
Diffstat (limited to 'service/static')
-rw-r--r-- | service/static/config.go | 7 | ||||
-rw-r--r-- | service/static/service.go | 2 |
2 files changed, 1 insertions, 8 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) { diff --git a/service/static/service.go b/service/static/service.go index 98d8313c..0c101ceb 100644 --- a/service/static/service.go +++ b/service/static/service.go @@ -22,7 +22,7 @@ type Service struct { // Init must return configure service and return true if service hasStatus enabled. Must return error in case of // misconfiguration. Services must not be used without proper configuration pushed first. func (s *Service) Init(cfg *Config, r *rrttp.Service) (bool, error) { - if !cfg.Enable || r == nil { + if r == nil { return false, nil } |