[go: up one dir, main page]

tide 0.3.0

Serve the web – HTTP server framework
Documentation
1
2
3
4
5
fn main() {
    let mut app = tide::App::new();
    app.at("/").get(|_| async move { "Hello, world!" });
    app.serve("127.0.0.1:8000").unwrap();
}