diff options
| author | metamuffin <metamuffin@disroot.org> | 2026-02-27 14:40:15 +0100 |
|---|---|---|
| committer | metamuffin <metamuffin@disroot.org> | 2026-02-27 14:40:15 +0100 |
| commit | c05bfcc2775f0e11db6e856bfcf06d0419c35d54 (patch) | |
| tree | ffd0e9fcf6b476a6198287085a514cfa7940c200 /server/src/main.rs | |
| parent | 4ba86694e393c61107e27c4127efc0455b329524 (diff) | |
| download | jellything-c05bfcc2775f0e11db6e856bfcf06d0419c35d54.tar jellything-c05bfcc2775f0e11db6e856bfcf06d0419c35d54.tar.bz2 jellything-c05bfcc2775f0e11db6e856bfcf06d0419c35d54.tar.zst | |
ui changed before object slices
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(), |