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