pub mod config; pub mod db; pub mod enrich; pub mod nostr; pub mod publisher; pub mod torznab; pub mod wot; use std::{ sync::{atomic::AtomicI32, Arc}, time::Instant, }; #[derive(Clone)] pub struct AppState { pub pool: sqlx::SqlitePool, pub cfg: Arc, pub version: &'static str, pub started_at: Instant, pub relay_count: Arc, }