Initial sanitized code sync
This commit is contained in:
18
internal/task/types.go
Normal file
18
internal/task/types.go
Normal file
@@ -0,0 +1,18 @@
|
||||
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"
|
||||
)
|
||||
Reference in New Issue
Block a user