blob: 91f07840030b2c8377ec5d856303b378d68fb4a6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
// Placeholder for cache storage implementation
pub struct CacheStorage;
impl CacheStorage {
pub fn new() -> Self {
Self
}
}
impl Default for CacheStorage {
fn default() -> Self {
Self::new()
}
}
|