mirror of
https://github.com/immich-app/immich.git
synced 2025-03-25 02:41:37 -05:00
8 lines
261 B
Dart
8 lines
261 B
Dart
import 'package:hooks_riverpod/hooks_riverpod.dart';
|
|
import 'package:isar/isar.dart';
|
|
import 'package:riverpod_annotation/riverpod_annotation.dart';
|
|
|
|
part 'db.provider.g.dart';
|
|
|
|
@Riverpod(keepAlive: true)
|
|
Isar isar(Ref ref) => throw UnimplementedError('isar');
|