wormhole-explorer/jobs/jobs/jobs.go

13 lines
232 B
Go

// Package jobs define an interface to execute jobs
package jobs
// JobIDNotional is the job id for notional job.
const (
JobIDNotional = "JOB_NOTIONAL_USD"
)
// Job is the interface for jobs.
type Job interface {
Run() error
}