mirror of
https://github.com/get-drexa/drive.git
synced 2025-12-01 14:01:40 +00:00
10 lines
208 B
Go
10 lines
208 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")
|
||
|
|
)
|