mirror of
https://github.com/bitmagnet-io/bitmagnet.git
synced 2026-07-28 07:01:04 -04:00
16 lines
389 B
Go
16 lines
389 B
Go
package processor
|
|
|
|
import (
|
|
"errors"
|
|
)
|
|
|
|
var (
|
|
Err = errors.New("processor")
|
|
ErrSetup = errors.New("setup")
|
|
ErrInterrupted = errors.New("interrupted")
|
|
ErrClassify = errors.New("classify")
|
|
ErrPersist = errors.New("persist")
|
|
ErrShutdown = errors.New("shutdown")
|
|
ErrAllTorrentsFailed = errors.New("all torrents failed")
|
|
)
|