gotham 0.8.0

A flexible web framework that promotes stability, safety, security and speed.
Documentation
1
2
3
4
5
6
7
8
//! A collection of useful traits and macros that should always be imported.

#[cfg(feature = "derive")]
pub use gotham_derive::*;

pub use crate::handler::{IntoHandlerFuture, IntoResponse, MapHandlerError, MapHandlerErrorFuture};
pub use crate::router::builder::{DefineSingleRoute, DrawRoutes};
pub use crate::state::FromState;