mirror of
https://github.com/get-drexa/drive.git
synced 2025-11-30 21:41:39 +00:00
11 lines
277 B
Go
11 lines
277 B
Go
package upload
|
|
|
|
import "errors"
|
|
|
|
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")
|
|
)
|