mirror of
https://github.com/AlistGo/alist.git
synced 2025-06-08 03:50:43 +08:00
12 lines
331 B
Go
12 lines
331 B
Go
package driver
|
|
|
|
import "errors"
|
|
|
|
var (
|
|
ErrorDirNotFound = errors.New("directory not found")
|
|
ErrorObjectNotFound = errors.New("object not found")
|
|
ErrNotImplement = errors.New("not implement")
|
|
ErrNotSupport = errors.New("not support")
|
|
ErrRelativePath = errors.New("access using relative path is not allowed")
|
|
)
|