mirror of
https://github.com/lollipopkit/flutter_server_box.git
synced 2025-12-17 07:14:28 +01:00
14 lines
256 B
Dart
14 lines
256 B
Dart
abstract class RemoteStorage {
|
|
Future<Error> upload({
|
|
required String relativePath,
|
|
String? localPath
|
|
});
|
|
|
|
Future<Error> download({
|
|
required String relativePath,
|
|
String? localPath
|
|
});
|
|
|
|
Future<Error> delete(String relativePath);
|
|
}
|