fej/src/main.rs

18 lines
297 B
Rust
Raw Normal View History

2021-03-05 18:55:18 +01:00
#![feature(proc_macro_hygiene, decl_macro)]
#[macro_use] extern crate rocket;
// Route modules
2021-03-05 20:58:33 +01:00
mod hello;
2021-03-06 00:25:40 +01:00
mod ivago;
fn rocket() -> rocket::Rocket {
rocket::ignite()
.mount("/hello", hello::routes())
.mount("/ivago", ivago::routes())
2021-03-06 00:25:40 +01:00
}
2021-03-05 18:55:18 +01:00
2021-03-05 18:39:49 +01:00
fn main() {
2021-03-06 00:25:40 +01:00
rocket().launch();
2021-03-05 18:39:49 +01:00
}