chore: rename account to storage

This commit is contained in:
Noah Hsu
2022-07-10 14:45:39 +08:00
parent efa20cc7bd
commit fc1204c914
31 changed files with 548 additions and 548 deletions

View File

@ -14,11 +14,11 @@ import (
)
func ClearCache(path string) {
account, actualPath, err := operations.GetAccountAndActualPath(path)
storage, actualPath, err := operations.GetStorageAndActualPath(path)
if err != nil {
return
}
operations.ClearCache(account, actualPath)
operations.ClearCache(storage, actualPath)
}
func containsByName(files []model.Obj, file model.Obj) bool {