feat: fs and operations

This commit is contained in:
Noah Hsu
2022-06-10 21:00:51 +08:00
parent cd7e9974df
commit ec89bb70c7
8 changed files with 137 additions and 24 deletions

7
internal/fs/error.go Normal file
View File

@ -0,0 +1,7 @@
package fs
import "errors"
var (
ErrMoveBetwwenTwoAccounts = errors.New("can't move files between two account, try to copy")
)