alist/internal/fs/error.go

8 lines
130 B
Go
Raw Normal View History

2022-06-10 13:00:51 +00:00
package fs
import "errors"
var (
ErrMoveBetwwenTwoAccounts = errors.New("can't move files between two account, try to copy")
)