Files
gpt-plus-gpt/internal/task/types.go
2026-03-15 20:48:19 +08:00

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"
)