1package task 2 3import "errors" 4 5var ( 6 ErrTaskNotFound = errors.New("task not found") 7 ErrTaskRunning = errors.New("task is running") 8) 9 10