mirror of
https://github.com/bitmagnet-io/bitmagnet.git
synced 2026-07-29 23:43:43 -04:00
12 lines
289 B
Go
12 lines
289 B
Go
package registry
|
|
|
|
import "errors"
|
|
|
|
var (
|
|
Err = errors.New("registry")
|
|
ErrResolve = errors.New("resolve failed")
|
|
ErrUnknownPlugin = errors.New("unknown plugin")
|
|
ErrDisabled = errors.New("plugin is disabled")
|
|
ErrDependency = errors.New("plugin dependency")
|
|
)
|