Files
crawlab/core/constants/schedule.go
2024-06-14 15:42:50 +08:00

11 lines
243 B
Go

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