first commit

This commit is contained in:
2026-06-10 19:16:52 +02:00
commit 9169af831d
18 changed files with 907 additions and 0 deletions
+9
View File
@@ -0,0 +1,9 @@
use rocket::fs::FileServer;
#[rocket::main]
async fn main() -> Result<(), Box<rocket::Error>> {
let frontend = FileServer::from("frontend");
let server = rocket::build().mount("/", frontend);
server.launch().await?;
Ok(())
}