feat: webdav for sharepoint online (#460)

This commit is contained in:
Xhofe
2022-04-11 21:32:38 +08:00
parent 395de069c2
commit 8e059c64b5
5 changed files with 85 additions and 28 deletions

7
drivers/webdav/util.go Normal file
View File

@ -0,0 +1,7 @@
package webdav
import "github.com/Xhofe/alist/model"
func isSharePoint(account *model.Account) bool {
return account.InternalType == "sharepoint"
}