diff options
Diffstat (limited to 'server/src/main.rs')
| -rw-r--r-- | server/src/main.rs | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/server/src/main.rs b/server/src/main.rs index f3eabcf..8209879 100644 --- a/server/src/main.rs +++ b/server/src/main.rs @@ -32,7 +32,6 @@ pub mod request_info; pub mod responders; pub mod routes; pub mod ui; -pub mod ui_responder; #[rocket::main] async fn main() { @@ -84,7 +83,6 @@ pub fn create_state() -> Result<Arc<State>> { let cache_storage = jellykv::rocksdb::new(&config.cache_path)?; let db_storage = jellykv::rocksdb::new(&config.database_path)?; - // let db_storage = jellykv::memory::new(); let state = Arc::new(State { cache: Cache::new(Box::new(cache_storage), config.max_memory_cache_size).into(), |