//! HTTP server with OAuth authentication and record sync interface. //! //! Web application providing OAuth flow, record synchronization UI, //! templating, dependency injection for AT Protocol operations, and XRPC services. pub mod context; mod errors; mod handle_index; mod handle_oauth_callback; mod handle_oauth_login; mod handle_xrpc_submit_signed_record; mod middleware_i18n; pub mod server; pub mod templates; mod utils;