1 2 3 4 5 6 7 8 9
use vial::prelude::*; routes! { GET "/" => |_| Response::from_file("README.md").as_markdown(); } fn main() { vial::run!(); }