1 2 3 4 5 6 7
vial::routes! { GET "/" => |_| "Hello, world!"; } fn main() { vial::run!("0.0.0.0:7667").unwrap(); }