use std::sync::Arc; pub type ArcState = Arc; pub type ReqState = axum::extract::State; pub struct State { pub db: sqlx::SqlitePool, pub files_dir: std::path::PathBuf, }