init repo

This commit is contained in:
Reid 2023-08-25 22:48:32 -07:00
commit bc4c3b4621
Signed by: reidlab
GPG key ID: 6C9EAA3364F962C8
12 changed files with 1652 additions and 0 deletions

13
src/main.rs Normal file
View file

@ -0,0 +1,13 @@
#![feature(decl_macro)]
#[macro_use] extern crate rocket;
#[get("/")]
fn index() -> String {
return String::from("index | coming soon to a localhost:8000 near u");
}
#[launch]
fn rocket() -> _ {
rocket::build().mount("/", routes![index])
}