push codeee

This commit is contained in:
hexlocation pc 2024-07-12 14:38:10 +02:00
commit ec0f0777c1
7 changed files with 1936 additions and 0 deletions

12
src/main.rs Normal file
View file

@ -0,0 +1,12 @@
extern crate rocket;
use rocket::{get,launch, build, routes};
#[get("/")]
fn index() -> &'static str {
"Hewwo wowd :3"
}
#[launch]
fn rocket() -> _ {
build().mount("/", routes![index])
}