mirror of
https://github.com/immich-app/immich
synced 2025-11-14 17:36:12 +00:00
feat(mobile): new sync (#16556)
* feat(mobile): new sync * refactor * refactor * refactor * refactor * refactor * refactor * update analysis option * remove database operation * pr feedback
This commit is contained in:
parent
2875303b4c
commit
1ed1a0a1fc
7 changed files with 216 additions and 0 deletions
7
mobile/lib/domain/interfaces/sync_api.interface.dart
Normal file
7
mobile/lib/domain/interfaces/sync_api.interface.dart
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
import 'package:immich_mobile/domain/models/sync/sync_event.model.dart';
|
||||
|
||||
abstract interface class ISyncApiRepository {
|
||||
Future<void> ack(String data);
|
||||
|
||||
Stream<List<SyncEvent>> watchUserSyncEvent();
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue