fej/src/hello/routes.rs

5 lines
72 B
Rust

#[get("/world")]
pub fn world() -> &'static str {
"Hello, world!"
}