pylon-router 0.3.21

Pylon — realtime backend as a single Rust binary. Schema, policies, server functions, live queries, auth — one process.
Documentation
//! Route modules. Each module owns one slice of the `/api/*` surface and
//! exposes a `handle(...) -> Option<(u16, String)>` function. The
//! top-level `route_inner` in `lib.rs` invokes them in order; the first
//! `Some(...)` short-circuits the dispatch.
//!
//! Splitting strategy mirrors the security-review groupings: routes
//! that share an auth model and a threat surface live together so a
//! reviewer can audit one file instead of scrolling through 6000+
//! lines of unrelated handlers.

pub mod actions;
pub mod admin_data;
pub mod ai;
pub mod auth;
pub mod auth_admin;
pub mod crdt;
pub mod entities;
pub mod files;
pub mod functions;
pub mod infra;
pub mod links;
pub mod ops_admin;
pub mod queries;
pub mod rooms;
pub mod search;
pub mod shards;
pub mod sync;
pub mod workflows;