feat: change webdav impl

This commit is contained in:
Simon Ding
2024-07-12 19:50:21 +08:00
parent 654501ec03
commit 643351d2c4
4 changed files with 22 additions and 60 deletions

View File

@@ -11,7 +11,7 @@ import (
type Storage interface {
Move(src, dest string) error
ReadDir(dir string) ([]FileInfo, error)
ReadDir(dir string) ([]fs.FileInfo, error)
}
func NewLocalStorage(dir string) *LocalStorage {