1 2 3 4 5 6 7 8
use autumn_web::get; #[get("")] async fn hello() -> &'static str { "Hello!" } fn main() {}