mirror of
https://github.com/AlistGo/alist.git
synced 2025-11-26 03:45:05 +08:00
9 lines
118 B
Go
9 lines
118 B
Go
package drivers
|
|
|
|
import "fmt"
|
|
|
|
var (
|
|
PathNotFound = fmt.Errorf("path not found")
|
|
NotFile = fmt.Errorf("not file")
|
|
)
|