diff options
author | Wolfy-J <[email protected]> | 2018-07-08 13:10:24 -0700 |
---|---|---|
committer | Wolfy-J <[email protected]> | 2018-07-08 13:10:24 -0700 |
commit | 73e7ac6a6ad443a7f26e8be4f1cac776b3dcff93 (patch) | |
tree | 2b9aac740bdd635180510ba4c83268b8437b6c11 /service/static | |
parent | 29c9bf94350e86ec96f5ce5eeb476dfcd57302cd (diff) |
more tests
Diffstat (limited to 'service/static')
-rw-r--r-- | service/static/service.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/service/static/service.go b/service/static/service.go index 968cb594..98d8313c 100644 --- a/service/static/service.go +++ b/service/static/service.go @@ -21,7 +21,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) (enabled bool, err error) { +func (s *Service) Init(cfg *Config, r *rrttp.Service) (bool, error) { if !cfg.Enable || r == nil { return false, nil } |