Files
crawlab/backend/constants/schedule.go
2019-12-09 10:28:48 +08:00

11 lines
240 B
Go

package constants
const (
ScheduleStatusStop = "stop"
ScheduleStatusRunning = "running"
ScheduleStatusError = "error"
ScheduleStatusErrorNotFoundNode = "Not Found Node"
ScheduleStatusErrorNotFoundSpider = "Not Found Spider"
)