door-alarm/src/main.rs
Daniel Svitan 7d841a6571 🎉 Initial commit
2025-04-23 09:16:49 +02: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])
}