Files

10 lines
218 B
Go
Raw Permalink Normal View History

2025-11-27 20:49:58 +00:00
package virtualfs
import "errors"
var (
2025-11-30 01:16:44 +00:00
ErrNodeNotFound = errors.New("node not found")
ErrNodeConflict = errors.New("node conflict")
ErrUnsupportedOperation = errors.New("unsupported operation")
2025-11-27 20:49:58 +00:00
)