mirror of
https://github.com/navidrome/navidrome.git
synced 2025-08-10 00:52:20 +00:00
Files
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")
|
|||
)
|