1
0
mirror of https://github.com/immich-app/immich.git synced 2025-07-06 06:07:29 +02:00

refactor(mobile): repositories for album service (#12701)

* refactor(mobile): repositories for album service

* review feedback, first service unit test
This commit is contained in:
Fynn Petersen-Frey
2024-09-16 22:26:14 +02:00
committed by GitHub
parent edb085691a
commit 4a1ff6abce
14 changed files with 347 additions and 71 deletions

View File

@ -0,0 +1,5 @@
import 'package:immich_mobile/entities/user.entity.dart';
abstract interface class IUserRepository {
Future<List<User>> getByIds(List<String> ids);
}