huellas/src/main.rs

18 lines
243 B
Rust
Raw Normal View History

2022-07-17 17:04:48 -04:00
#[macro_use]
extern crate rocket;
mod place;
mod routes;
#[get("/")]
fn index() -> &'static str {
"Hello, world!"
}
#[launch]
fn rocket() -> _ {
rocket::build()
.mount("/", routes![index])
.attach(routes::stage())
}