Files
drop/torrential/src/state.rs
T
2026-02-05 22:40:00 +11:00

11 lines
219 B
Rust

use std::sync::Arc;
use dashmap::DashMap;
use crate::{DownloadContext, server::DropServer};
pub struct AppState {
pub context_cache: DashMap<(String, String), DownloadContext>,
pub server: Arc<DropServer>,
}