mirror of
https://github.com/immich-app/immich.git
synced 2025-09-29 15:31:13 -04:00
9 lines
295 B
Dart
9 lines
295 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, dependencies: [])
|
|
ApiService apiService(Ref _) => ApiService();
|