mirror of
https://github.com/immich-app/immich.git
synced 2024-12-17 12:22:31 +02:00
6 lines
206 B
Dart
6 lines
206 B
Dart
|
import 'package:hooks_riverpod/hooks_riverpod.dart';
|
||
|
import 'package:isar/isar.dart';
|
||
|
|
||
|
// overwritten in main.dart due to async loading
|
||
|
final dbProvider = Provider<Isar>((_) => throw UnimplementedError());
|