8 lines
89 B
Go
8 lines
89 B
Go
package contracts
|
|
|
|
type DoServiceProvider interface {
|
|
Register()
|
|
Start()
|
|
Shutdown()
|
|
}
|