contracts/provider.go
2023-04-12 16:56:55 +08:00

8 lines
89 B
Go

package contracts
type DoServiceProvider interface {
Register()
Start()
Shutdown()
}