rkt 0.6.0

Web framework with a focus on usability, security, extensibility, and speed. (Community Fork)
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Types and traits for routes and their request handlers and return types.

mod handler;
mod route;
mod segment;
mod uri;

pub use handler::*;
pub use route::*;
pub use uri::*;

pub(crate) use segment::Segment;