mirror of
https://github.com/immich-app/immich.git
synced 2025-05-24 01:12:58 -04:00
9 lines
279 B
Dart
9 lines
279 B
Dart
import 'package:hooks_riverpod/hooks_riverpod.dart';
|
|
import 'package:immich_mobile/services/api.service.dart';
|
|
import 'package:riverpod_annotation/riverpod_annotation.dart';
|
|
|
|
part 'api.provider.g.dart';
|
|
|
|
@Riverpod(keepAlive: true)
|
|
ApiService apiService(Ref ref) => ApiService();
|