planetwars.dev/backend/src/main.rs

16 lines
258 B
Rust
Raw Normal View History

2021-12-13 14:43:47 +00:00
#![feature(proc_macro_hygiene, decl_macro)]
#[macro_use]
extern crate rocket;
#[macro_use]
extern crate rocket_contrib;
#[get("/")]
fn index() -> &'static str {
"Hello, world!"
}
fn main() {
rocket::ignite().mount("/", routes![index]).launch();
}