8 lines
114 B
Go
8 lines
114 B
Go
package broker
|
|
|
|
import "local/truckstop/config"
|
|
|
|
type Broker interface {
|
|
Search([]config.State) ([]Job, error)
|
|
}
|