mirror of
https://github.com/lollipopkit/flutter_server_box.git
synced 2026-02-20 23:24:20 +01:00
new: webdav sync test
This commit is contained in:
@@ -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> {
|
||||
|
||||
@@ -1,13 +0,0 @@
|
||||
abstract class RemoteStorage {
|
||||
Future<Error> upload({
|
||||
required String relativePath,
|
||||
String? localPath
|
||||
});
|
||||
|
||||
Future<Error> download({
|
||||
required String relativePath,
|
||||
String? localPath
|
||||
});
|
||||
|
||||
Future<Error> delete(String relativePath);
|
||||
}
|
||||
@@ -2,9 +2,9 @@
|
||||
|
||||
class BuildData {
|
||||
static const String name = "ServerBox";
|
||||
static const int build = 654;
|
||||
static const int build = 660;
|
||||
static const String engine = "3.16.2";
|
||||
static const String buildAt = "2023-12-02 00:21:29";
|
||||
static const int modifications = 2;
|
||||
static const String buildAt = "2023-12-04 13:43:20";
|
||||
static const int modifications = 11;
|
||||
static const int script = 31;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user