new: webdav sync test

This commit is contained in:
lollipopkit
2023-12-04 14:21:20 +08:00
parent 2dc86a9da2
commit 38cdef9458
18 changed files with 109 additions and 50 deletions

View File

@@ -6,7 +6,8 @@ enum ErrFrom {
ssh,
status,
icloud,
webdav,;
webdav,
;
}
abstract class Err<T> {
@@ -73,7 +74,8 @@ class ICloudErr extends Err<ICloudErrType> {
enum WebdavErrType {
generic,
notFound,;
notFound,
;
}
class WebdavErr extends Err<WebdavErrType> {