Spaces:
Runtime error
Runtime error
File size: 136 Bytes
215df2f |
1 2 3 4 5 6 7 8 9 |
package task
import "errors"
var (
ErrTaskNotFound = errors.New("task not found")
ErrTaskRunning = errors.New("task is running")
)
|