🎉 Initial commit

This commit is contained in:
Daniel Svitan
2025-04-23 09:16:49 +02:00
commit 7d841a6571
4 changed files with 1952 additions and 0 deletions

11
src/main.rs Normal file
View File

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