blob: 3b88fe8be717ded00875f12ab60e99290eb02ca3 [file] [log] [blame]
Sergiusz Bazanski1fad2e52019-08-01 20:16:27 +02001package main
2
3import (
4 "context"
5 "time"
6
7 "code.hackerspace.pl/hscloud/bgpwtf/cccampix/verifier/model"
8)
9
10type processor interface {
11 Name() string
Serge Bazanskiec71cb52019-08-22 18:13:13 +020012 NextRun(lastRun time.Time, lastFailed bool) time.Time
Sergiusz Bazanski1fad2e52019-08-01 20:16:27 +020013
14 RunAll(ctx context.Context, m model.Model) error
15}