14 lines
276 B
Rust
14 lines
276 B
Rust
//! HTTP and WebSocket entry points for the server.
|
|
//!
|
|
//! Each submodule exposes route handlers that Axum wires into the router in
|
|
//! `main.rs`.
|
|
|
|
pub mod auth;
|
|
pub mod invites;
|
|
pub mod models;
|
|
pub mod nostr_auth;
|
|
pub mod profile;
|
|
pub mod rooms;
|
|
pub mod upload;
|
|
pub mod ws;
|