ruest-framework 0.1.0

RUEST (Rust + NestJS) — framework backend : DI, modules, HTTP Axum, JWT, validation
Documentation
1
2
3
4
5
6
7
8
9
//! HTTP routing primitives for RUEST.

mod path;
mod route;
mod registry;

pub use path::join_paths;
pub use route::{boxed_handler, HttpMethod, RouteDefinition, RouteHandler};
pub use registry::RouteRegistry;