mirror of
https://github.com/immich-app/immich.git
synced 2025-12-23 21:37:36 -05:00
8 lines
306 B
Dart
8 lines
306 B
Dart
import 'package:hooks_riverpod/hooks_riverpod.dart';
|
|
import 'package:immich_mobile/constants/constants.dart';
|
|
import 'package:immich_mobile/utils/background_sync.dart';
|
|
|
|
final backgroundSyncProvider = Provider<BackgroundSyncManager>(
|
|
(ref) => BackgroundSyncManager(duration: kBackgroundSyncDuration),
|
|
);
|