mirror of https://github.com/Xhofe/alist
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")
|
||
|
)
|