water_http 4.0.4

fast web http framework that support http 1 and http 2 with very easy use
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
use water_http::{fast_build};
fn main() {
    start_fast_server();
}

fast_build!{
    port -> 8081,
    functions -> {

        GET => public/{path}/>> => hello(context)async{
            let path = format!("path is {}",path);
            _= context.send_string_slice(&path).await;
        }
    }
}