kalavara 0.3.0

A distributed persistent key value store that speaks http.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
macro_rules! redirect {
    ($url:expr) => {
        tiny_http::Response::from_string("")
            .with_status_code(307)
            .with_header(tiny_http::Header::from_str($url).unwrap())
    };
}

macro_rules! resp {
    ($body:expr, $status:expr) => {
        tiny_http::Response::from_string($body).with_status_code($status)
    };

    ($body:expr) => {
        tiny_http::Response::from_string($body)
    };
}