Files
Mike Gibson e22d14b5ed WIP
2025-08-30 12:48:35 +00:00

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")
)