mirror of https://github.com/Xhofe/alist
17 lines
400 B
Go
17 lines
400 B
Go
package errs
|
|
|
|
import (
|
|
"errors"
|
|
)
|
|
|
|
var (
|
|
NotImplement = errors.New("not implement")
|
|
NotSupport = errors.New("not support")
|
|
RelativePath = errors.New("access using relative path is not allowed")
|
|
|
|
MoveBetweenTwoAccounts = errors.New("can't move files between two account, try to copy")
|
|
UploadNotSupported = errors.New("upload not supported")
|
|
|
|
MetaNotFound = errors.New("meta not found")
|
|
)
|