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:
Alex 2025-03-06 08:44:28 -06:00 committed by GitHub
parent 2875303b4c
commit 1ed1a0a1fc
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
7 changed files with 216 additions and 0 deletions

View 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();
}