topcoat-router 0.2.0

A modular, batteries-included Rust web framework for server-rendered apps.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
mod css;
mod form;
mod html;
mod json;
#[cfg(feature = "multipart")]
mod multipart;

pub use css::*;
pub use form::*;
pub use html::*;
pub use json::*;
#[cfg(feature = "multipart")]
pub use multipart::*;