diff --git a/core/interfaces/Service.go b/core/interfaces/Service.go index e5b36a6..51db3f1 100644 --- a/core/interfaces/Service.go +++ b/core/interfaces/Service.go @@ -1,6 +1,8 @@ package interfaces type Service interface { - Starter - Stopper + Init() error + Start() error + Stop() + Destroy() }