diff options
author | Wolfy-J <[email protected]> | 2018-06-13 14:07:05 +0300 |
---|---|---|
committer | Wolfy-J <[email protected]> | 2018-06-13 14:07:05 +0300 |
commit | ca95f67317bcf8972b9e669869338a7dc09bf06d (patch) | |
tree | 4d199ceb8a78675242fef21bd87efb5a78b04029 /service/service.go | |
parent | c8e8afe79611941ce50453ee7dfae82d7915e9c4 (diff) |
more upload tests
Diffstat (limited to 'service/service.go')
-rw-r--r-- | service/service.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/service/service.go b/service/service.go index 7ddfbd7a..6ddcda41 100644 --- a/service/service.go +++ b/service/service.go @@ -4,9 +4,9 @@ import "sync" // svc provides high level functionality for road runner svc. type Service interface { - // Configure must return configure service and return true if service hasStatus enabled. Must return error in case of + // 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. - Configure(cfg Config, c Container) (enabled bool, err error) + Init(cfg Config, c Container) (enabled bool, err error) // Serve serves. Serve() error |