This commit is contained in:
2025-01-21 11:52:04 -06:00
parent 2be7b117ea
commit 16dce1f0c2
26 changed files with 1602 additions and 405 deletions

14
vfs/vfserror/vfserror.go Normal file
View File

@@ -0,0 +1,14 @@
package vfserror
import "errors"
var (
// ErrUnreachable is returned when a code path is unreachable.
ErrUnreachable = errors.New("unreachable")
// ErrNotFound is returned when a key is not found.
ErrNotFound = errors.New("vfs: key not found")
// ErrDiskFull is returned when the disk is full.
ErrDiskFull = errors.New("vfs: disk full")
)