package model import "context" type Server interface { IsEnabled() bool Start(context.Context) error Stop(context.Context) error }