huellas/src/main.rs

14 lines
231 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-08-03 22:30:02 -04:00
.mount("/", FileServer::from("static"))
2022-07-17 17:04:48 -04:00
.attach(routes::stage())
}