nurse/check/api.go

16 lines
229 B
Go
Raw Normal View History

2022-04-28 16:35:02 +00:00
package check
import (
"context"
"errors"
"github.com/baez90/nurse/grammar"
)
var ErrNoSuchCheck = errors.New("no such check")
type SystemChecker interface {
grammar.CheckUnmarshaler
Execute(ctx context.Context) error
}