Files
flutter_server_box/lib/data/model/app/remote_storage.dart
2023-12-04 13:39:13 +08:00

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);
}