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