huellas/src/main.rs

14 lines
242 B
Rust
Raw Normal View History

2022-07-17 17:04:48 -04:00
#[macro_use]
extern crate rocket;
2022-07-22 01:17:44 -04:00
use rocket::fs::{relative, FileServer};
2022-07-17 17:04:48 -04:00
mod place;
mod routes;
#[launch]
fn rocket() -> _ {
rocket::build()
2022-07-22 01:17:44 -04:00
.mount("/", FileServer::from(relative!("static")))
2022-07-17 17:04:48 -04:00
.attach(routes::stage())
}