Files
build-joeac/src/main.rs
T
2026-05-15 14:39:59 +01:00

14 lines
190 B
Rust

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