alist/pkg/task/errors.go

9 lines
136 B
Go
Raw Normal View History

2022-06-18 12:38:14 +00:00
package task
import "errors"
var (
ErrTaskNotFound = errors.New("task not found")
2022-07-31 13:21:54 +00:00
ErrTaskRunning = errors.New("task is running")
2022-06-18 12:38:14 +00:00
)