tsp-rs/src/main.rs
Alex Wellnitz e905c4263e
All checks were successful
renovate / renovate (push) Successful in 25s
feat: add rocket web-framework
2025-03-17 20:17:50 +01:00

14 lines
178 B
Rust

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