blob: 3b88fe8be717ded00875f12ab60e99290eb02ca3 [file] [log] [blame]
package main
import (
"context"
"time"
"code.hackerspace.pl/hscloud/bgpwtf/cccampix/verifier/model"
)
type processor interface {
Name() string
NextRun(lastRun time.Time, lastFailed bool) time.Time
RunAll(ctx context.Context, m model.Model) error
}