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