athunderx / pkg /task /errors.go
Mr.L
feat: add full alist source code for Docker build
7107f0b
raw
history blame contribute delete
136 Bytes
package task
import "errors"
var (
ErrTaskNotFound = errors.New("task not found")
ErrTaskRunning = errors.New("task is running")
)