mirror of
https://github.com/xxjwxc/public.git
synced 2025-09-26 20:01:19 +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")
|