//! AI Weekly Synth backend library crate. //! //! Re-exports all modules so that integration tests can access them. //! The binary entry point (`main.rs`) uses this crate as a dependency. pub mod app_state; pub mod config; pub mod db; pub mod errors; pub mod handlers; pub mod middleware; pub mod models; pub mod router; pub mod services; pub mod util;