mirror of
https://github.com/get-drexa/drive.git
synced 2026-02-02 17:21:17 +00:00
12 lines
388 B
Go
12 lines
388 B
Go
package virtualfs
|
|
|
|
import "errors"
|
|
|
|
var (
|
|
ErrNodeNotFound = errors.New("node not found")
|
|
ErrNodeConflict = errors.New("node conflict")
|
|
ErrUnsupportedOperation = errors.New("unsupported operation")
|
|
ErrCursorMismatchedOrderField = errors.New("cursor mismatched order field")
|
|
ErrCursorMismatchedDirection = errors.New("cursor mismatched direction")
|
|
)
|