mirror of
https://github.com/bitmagnet-io/bitmagnet.git
synced 2026-08-03 18:03:39 -04:00
12 lines
295 B
Go
12 lines
295 B
Go
package runner
|
|
|
|
import "errors"
|
|
|
|
var (
|
|
Err = errors.New("runner")
|
|
ErrCompleted = errors.New("completed")
|
|
ErrShutdownRequested = errors.New("shutdown requested")
|
|
ErrAlreadyRunning = errors.New("already running")
|
|
ErrNotRunning = errors.New("not running")
|
|
)
|