truckstop/broker/broker.go

8 lines
114 B
Go

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