19 lines
377 B
Go
19 lines
377 B
Go
package task
|
|
|
|
const (
|
|
StatusPending = "pending"
|
|
StatusRunning = "running"
|
|
StatusStopping = "stopping"
|
|
StatusStopped = "stopped"
|
|
StatusInterrupted = "interrupted"
|
|
StatusCompleted = "completed"
|
|
|
|
LogStatusSuccess = "success"
|
|
LogStatusFailed = "failed"
|
|
LogStatusSkipped = "skipped"
|
|
|
|
TaskTypePlus = "plus"
|
|
TaskTypeTeam = "team"
|
|
TaskTypeBoth = "both"
|
|
)
|