mirror of
https://github.com/immich-app/immich.git
synced 2026-04-16 23:51:55 -04:00
* refactor: yank old timeline # Conflicts: # mobile/lib/presentation/pages/editing/drift_edit.page.dart # mobile/lib/providers/websocket.provider.dart # mobile/lib/routing/router.dart * more cleanup * remove native code * chore: bump sqlite-data version * remove old background tasks from BGTaskSchedulerPermittedIdentifiers * rebase --------- Co-authored-by: shenlong-tanwen <139912620+shalong-tanwen@users.noreply.github.com>
14 lines
593 B
Dart
14 lines
593 B
Dart
import 'package:immich_mobile/domain/services/store.service.dart';
|
|
import 'package:immich_mobile/domain/utils/background_sync.dart';
|
|
import 'package:immich_mobile/platform/native_sync_api.g.dart';
|
|
import 'package:immich_mobile/services/app_settings.service.dart';
|
|
import 'package:mocktail/mocktail.dart';
|
|
|
|
class MockStoreService extends Mock implements StoreService {}
|
|
|
|
class MockBackgroundSyncManager extends Mock implements BackgroundSyncManager {}
|
|
|
|
class MockNativeSyncApi extends Mock implements NativeSyncApi {}
|
|
|
|
class MockAppSettingsService extends Mock implements AppSettingsService {}
|