//! Web interface backend for Shanty. //! //! An Actix-web server that ties all Shanty components together, exposing a REST //! API consumed by the Yew (WASM) frontend. Handles background tasks, configuration, //! and orchestration of indexing, tagging, downloading, and more. pub mod auth; pub mod config; pub mod cookie_refresh; pub mod error; pub mod mb_update; pub mod monitor; pub mod pipeline; pub mod routes; pub mod scheduler; pub mod state; pub mod tasks; pub mod workers;