You've already forked immich
mirror of
https://github.com/immich-app/immich.git
synced 2025-08-09 23:17:29 +02:00
8 lines
331 B
Dart
8 lines
331 B
Dart
![]() |
import 'package:hooks_riverpod/hooks_riverpod.dart';
|
||
|
import 'package:immich_mobile/infrastructure/repositories/stack.repository.dart';
|
||
|
import 'package:immich_mobile/providers/infrastructure/db.provider.dart';
|
||
|
|
||
|
final driftStackProvider = Provider<DriftStackRepository>(
|
||
|
(ref) => DriftStackRepository(ref.watch(driftProvider)),
|
||
|
);
|