1 2 3 4 5 6 7
use std::path::Path; fn main() { web_server::new() .get("/", |_, _| Path::new("examples/sw.png").into()) .launch(8080); }