blob: ff70e9da43daca95d78f42d42140e3d1a5eb6d5c [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
12 NextRun(time.Time) time.Time
13
14 RunAll(ctx context.Context, m model.Model) error
15}