toni 0.1.1

Fast and modular web framework for scalable applications
Documentation
1
2
3
4
5
6
7
8
use serde_json::Value;

#[derive(Debug, Clone)]
pub enum Body {
    Text(String),
    Json(Value),
    // Binary(Vec<u8>),
}