fej/src/main.rs

14 lines
294 B
Rust

#![feature(proc_macro_hygiene, decl_macro)]
#[macro_use] extern crate rocket;
mod hello;
fn main() {
rocket::ignite().mount("/hello", routes![
hello::world,
hello::hello,
hello::name_age
]).launch();
}