1
0
mirror of https://github.com/immich-app/immich.git synced 2024-12-21 01:39:59 +02:00
immich/mobile/lib/shared/services/asset_cache.service.dart

14 lines
398 B
Dart
Raw Normal View History

import 'package:immich_mobile/shared/models/asset.dart';
import 'package:immich_mobile/shared/services/json_cache.dart';
@Deprecated("only kept to remove its files after migration")
class AssetCacheService extends JsonCache<List<Asset>> {
AssetCacheService() : super("asset_cache");
2022-10-17 14:53:27 +02:00
@override
void put(List<Asset> data) {}
2022-10-17 14:53:27 +02:00
@override
Future<List<Asset>?> get() => Future.value(null);
2022-10-14 23:57:55 +02:00
}