Files

11 lines
277 B
Go
Raw Permalink Normal View History

2025-11-28 22:31:00 +00:00
package upload
import "errors"
var (
ErrNotFound = errors.New("not found")
ErrParentNotDirectory = errors.New("parent is not a directory")
ErrConflict = errors.New("node conflict")
2025-11-30 20:08:31 +00:00
ErrContentNotUploaded = errors.New("content has not been uploaded")
2025-11-28 22:31:00 +00:00
)