mirror of
https://github.com/maplibre/martin.git
synced 2024-12-18 20:31:54 +03:00
add missing cache module
This commit is contained in:
parent
cd637e1ecc
commit
6e68e9838c
6
src/martin/cache.rs
Normal file
6
src/martin/cache.rs
Normal file
@ -0,0 +1,6 @@
|
||||
use iron::typemap::Key;
|
||||
use iron::url::Url;
|
||||
use lru::LruCache;
|
||||
|
||||
pub struct TileCache;
|
||||
impl Key for TileCache { type Value = LruCache<Url, Vec<u8>>; }
|
Loading…
Reference in New Issue
Block a user