truckstop/broker/broker.go

14 lines
197 B
Go

package broker
import (
"local/truckstop/config"
"golang.org/x/time/rate"
)
var limiter = rate.NewLimiter(rate.Limit(0.3), 1)
type Broker interface {
Search([]config.State) ([]Job, error)
}