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
type Service interface {
Starter
Stopper
Init() error
Start() error
Stop()
Destroy()
}