mirror of
https://github.com/xxjwxc/public.git
synced 2026-04-22 23:17:20 +08:00
10 lines
196 B
Go
10 lines
196 B
Go
package myrunner
|
|
|
|
import "github.com/xxjwxc/public/errors"
|
|
|
|
//任务执行超时
|
|
var ErrTimeOut = errors.New("run time out")
|
|
|
|
//任务执行中断
|
|
var ErrInterruput = errors.New("run interruput")
|