You've already forked immich
mirror of
https://github.com/immich-app/immich.git
synced 2025-07-08 06:23:00 +02:00
8 lines
204 B
Dart
8 lines
204 B
Dart
![]() |
import 'package:immich_mobile/domain/models/sync/sync_event.model.dart';
|
||
|
|
||
|
abstract interface class ISyncApiRepository {
|
||
|
Future<void> ack(String data);
|
||
|
|
||
|
Stream<List<SyncEvent>> watchUserSyncEvent();
|
||
|
}
|