gotoolkit/model/service.go
2024-11-20 23:21:03 +01:00

9 lines
152 B
Go

package model
import "context"
type Service interface {
Start(context.Context) error
Stop(context.Context) error
WaitStop(context.Context) error
}