fej/src/main.rs

19 lines
297 B
Rust
Raw Normal View History

2021-03-05 18:55:18 +01:00
#![feature(proc_macro_hygiene, decl_macro)]
2021-04-02 21:20:36 +02:00
#[macro_use]
extern crate rocket;
2021-03-05 18:55:18 +01:00
// 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
}