mirror of
https://github.com/get-drexa/drive.git
synced 2025-12-01 05:51:39 +00:00
10 lines
218 B
Go
10 lines
218 B
Go
package virtualfs
|
|
|
|
import "errors"
|
|
|
|
var (
|
|
ErrNodeNotFound = errors.New("node not found")
|
|
ErrNodeConflict = errors.New("node conflict")
|
|
ErrUnsupportedOperation = errors.New("unsupported operation")
|
|
)
|