iwakuweb/src/main.rs
hexlocation pc ec0f0777c1 push codeee
2024-07-12 14:38:10 +02:00

12 lines
197 B
Rust

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