commons-go/core/interfaces/Service.go

9 lines
95 B
Go
Raw Normal View History

2018-04-12 09:38:04 +00:00
package interfaces
type Service interface {
2018-04-17 07:26:34 +00:00
Init() error
Start() error
Stop()
Destroy()
2018-04-12 09:38:04 +00:00
}