rocket_test_app/src/main.rs

14 lines
214 B
Rust

#[macro_use]
extern crate rocket;
use rocket::{Build, Rocket};
#[get("/")]
fn index() -> &'static str {
"Hello, Rocket!"
}
#[launch]
fn rocket() -> Rocket<Build> {
rocket::build().mount("/", routes![index])
}