9 lines
152 B
Go
9 lines
152 B
Go
package model
|
|
|
|
import "context"
|
|
|
|
type Service interface {
|
|
Start(context.Context) error
|
|
Stop(context.Context) error
|
|
WaitStop(context.Context) error
|
|
}
|