mirror of
https://github.com/MontFerret/ferret.git
synced 2024-12-14 11:23:02 +02:00
9 lines
219 B
Go
9 lines
219 B
Go
|
package common
|
||
|
|
||
|
import "github.com/MontFerret/ferret/pkg/runtime/core"
|
||
|
|
||
|
var (
|
||
|
ErrReadOnly = core.Error(core.ErrInvalidOperation, "read only")
|
||
|
ErrInvalidPath = core.Error(core.ErrInvalidOperation, "invalid path")
|
||
|
)
|