Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
9 lines
148 B
Go
9 lines
148 B
Go
package api
|
|||
|
|||
import "errors"
|
|||
|
|||
var (
|
|||
ErrNotFound = errors.New("plugin:not_found")
|
|||
ErrNotImplemented = errors.New("plugin:not_implemented")
|
|||
)
|