This commit is contained in:
crusader 2018-04-17 16:26:34 +09:00
parent b1143984f2
commit f50a7af7ee

View File

@ -1,6 +1,8 @@
package interfaces package interfaces
type Service interface { type Service interface {
Starter Init() error
Stopper Start() error
Stop()
Destroy()
} }