refactor(mobile): backup_album.interface.dart (#19348)

This commit is contained in:
Alex
2025-06-21 16:58:02 -05:00
committed by GitHub
parent 6a5597b36b
commit 9b047d30e4
8 changed files with 10 additions and 36 deletions
@@ -1,6 +1,5 @@
import 'package:hooks_riverpod/hooks_riverpod.dart';
import 'package:immich_mobile/entities/backup_album.entity.dart';
import 'package:immich_mobile/interfaces/backup_album.interface.dart';
import 'package:immich_mobile/repositories/backup.repository.dart';
final backupAlbumServiceProvider = Provider<BackupAlbumService>((ref) {
@@ -8,7 +7,7 @@ final backupAlbumServiceProvider = Provider<BackupAlbumService>((ref) {
});
class BackupAlbumService {
final IBackupAlbumRepository _backupAlbumRepository;
final BackupAlbumRepository _backupAlbumRepository;
BackupAlbumService(this._backupAlbumRepository);