contracts/provider.go

8 lines
89 B
Go
Raw Permalink Normal View History

2023-04-12 16:56:55 +08:00
package contracts
type DoServiceProvider interface {
Register()
Start()
Shutdown()
}