fadaway/src/main.rs
2023-05-27 11:46:24 +09:00

12 lines
177 B
Rust

#[macro_use] extern crate rocket;
#[get("/")]
fn index() -> &'static str {
"Hello, world!"
}
#[launch]
fn rocket() -> _ {
rocket::build().mount("/", routes![index])
}