1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
//! Server infrastructure: health checks, metrics, OpenAPI, SPA fallback, //! graceful shutdown, and systemd integration. pub mod health; pub mod metrics; pub mod openapi; pub mod shutdown; pub mod spa; pub mod systemd; #[cfg(feature = "auth")] pub mod me; #[cfg(feature = "auth")] pub mod runner;