mirror of
https://github.com/immich-app/immich.git
synced 2025-06-23 15:30:51 -04:00
11 lines
410 B
Dart
11 lines
410 B
Dart
import 'package:hooks_riverpod/hooks_riverpod.dart';
|
|
import 'package:immich_mobile/constants/constants.dart';
|
|
import 'package:immich_mobile/utils/background_sync.dart';
|
|
import 'package:riverpod_annotation/riverpod_annotation.dart';
|
|
|
|
part 'background_sync.provider.g.dart';
|
|
|
|
@Riverpod(keepAlive: true)
|
|
BackgroundSyncManager backgroundSync(Ref _) =>
|
|
BackgroundSyncManager(duration: kBackgroundSyncDuration);
|