You've already forked immich
mirror of
https://github.com/immich-app/immich.git
synced 2025-06-17 03:47:45 +02: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);
|
||
|
}
|