mirror of
https://github.com/AlistGo/alist.git
synced 2025-04-20 03:08:46 +08:00
9 lines
136 B
Go
9 lines
136 B
Go
package task
|
|
|
|
import "errors"
|
|
|
|
var (
|
|
ErrTaskNotFound = errors.New("task not found")
|
|
ErrTaskRunning = errors.New("task is running")
|
|
)
|