fix: handle missing expected err cases

This commit is contained in:
2025-11-30 20:08:31 +00:00
parent 6c61cbe1fd
commit 3e96c42c4a
3 changed files with 13 additions and 0 deletions

View File

@@ -6,4 +6,5 @@ var (
ErrNotFound = errors.New("not found")
ErrParentNotDirectory = errors.New("parent is not a directory")
ErrConflict = errors.New("node conflict")
ErrContentNotUploaded = errors.New("content has not been uploaded")
)