9 lines
136 B
Go
9 lines
136 B
Go
package model
|
|
|
|
import "context"
|
|
|
|
type Server interface {
|
|
IsEnabled() bool
|
|
Start(context.Context) error
|
|
Stop(context.Context) error
|
|
}
|