mirror of
https://github.com/immich-app/immich.git
synced 2025-07-09 03:04:16 -04:00
7 lines
208 B
Dart
7 lines
208 B
Dart
import 'package:immich_mobile/entities/asset.entity.dart';
|
|
|
|
abstract interface class IFolderApiRepository {
|
|
Future<List<String>> getAllUniquePaths();
|
|
Future<List<Asset>> getAssetsForPath(String? path);
|
|
}
|