030c3eb428
* app updated * readme updated * rename base folder * update chatty's readme * move apps to packages dir * update repo overview Co-authored-by: diegoveloper <diego.velasquez.lopez@gmail.com>
6 lines
116 B
Dart
6 lines
116 B
Dart
import 'dart:io';
|
|
|
|
abstract class UploadStorageRepository {
|
|
Future<String> uploadPhoto(File file, String path);
|
|
}
|