snx 0.0.5

an experimental batteries-included web framework for Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
mod app;
mod config;
mod context;
mod db;
mod html;
mod http;
mod json;
mod panic_hook;
mod server;

pub use app::{boot, App};
pub use config::Config;
pub use context::Context;
pub use html::Html;
pub use http::{header::HeaderMap, middleware, request, response, router, Method, StatusCode};
pub use json::{InvalidJsonBodyError, Json};
pub use server::Server;