teo 0.0.52-beta.3

REDEFINED HTTP server framework.
Documentation
1
2
3
4
5
6
7
8
use crate::prelude::Value;

#[derive(Debug, Clone, PartialEq)]
pub struct Range {
    pub(crate) closed: bool,
    pub(crate) start: Box<Value>,
    pub(crate) end: Box<Value>,
}