Files
truckstop/broker/broker.go
2022-01-09 21:56:01 -05:00

8 lines
114 B
Go

package broker
import "local/truckstop/config"
type Broker interface {
Search([]config.State) ([]Job, error)
}