mirror of
https://github.com/Dr-Blank/Vaani.git
synced 2026-02-16 14:29:35 +00:00
13 lines
256 B
Dart
13 lines
256 B
Dart
class CacheKey {
|
|
static String personalized(String id) {
|
|
return 'personalizedView:$id';
|
|
}
|
|
|
|
static String libraryItem(String id) {
|
|
return 'library_item_$id';
|
|
}
|
|
|
|
static String libraryItems(String id) {
|
|
return 'library_items_$id';
|
|
}
|
|
}
|