Gnosco is a Rust-based escrow and badging application that integrates with the AT Protocol ecosystem..
1//! HTTP server with OAuth authentication and record sync interface.
2//!
3//! Web application providing OAuth flow, record synchronization UI,
4//! templating, dependency injection for AT Protocol operations, and XRPC services.
5
6pub mod context;
7mod errors;
8mod handle_index;
9mod handle_oauth_callback;
10mod handle_oauth_login;
11mod handle_xrpc_submit_signed_record;
12mod middleware_i18n;
13pub mod server;
14pub mod templates;
15mod utils;