alist/pkg/task/errors.go
2022-07-31 21:21:54 +08:00

9 lines
136 B
Go

package task
import "errors"
var (
ErrTaskNotFound = errors.New("task not found")
ErrTaskRunning = errors.New("task is running")
)