summaryrefslogtreecommitdiffstats
path: root/back/cmd/authfs/err.go
diff options
context:
space:
mode:
authorSam Anthony <sam@samanthony.xyz>2026-03-14 11:23:50 -0400
committerSam Anthony <sam@samanthony.xyz>2026-03-14 11:23:50 -0400
commit700096b078f6e16f2c5c967ea140f0b93e799986 (patch)
treee1d9965e9bf09ebe01a96d8faa6d2bc027e6984c /back/cmd/authfs/err.go
parent7d622695ae19e518fded6aa5fbf001dae4652211 (diff)
downloadbuth-harveyos.zip
authfs: rewrite with Harvey-OS/ninep, implement Rattachharveyos
Diffstat (limited to 'back/cmd/authfs/err.go')
-rw-r--r--back/cmd/authfs/err.go10
1 files changed, 10 insertions, 0 deletions
diff --git a/back/cmd/authfs/err.go b/back/cmd/authfs/err.go
new file mode 100644
index 0000000..81da2ba
--- /dev/null
+++ b/back/cmd/authfs/err.go
@@ -0,0 +1,10 @@
+package main
+
+import "errors"
+
+var (
+ ErrFileExist = errors.New("file already exists")
+ ErrFileNotExist = errors.New("file does not exist")
+ ErrFidExist = errors.New("fid already exists")
+ ErrFidNotExist = errors.New("fid does not exist")
+)