puzz 0.2.0

A simple and powerful web framework.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
pub use puzz_core::response::*;

pub mod html;
pub use html::html;

pub mod json;
pub use json::json;

pub mod stream;
pub use stream::stream;

#[cfg(feature = "sse")]
pub mod sse;
#[cfg(feature = "sse")]
pub use sse::sse;