Rocket/examples/config/src/main.rs

11 lines
232 B
Rust
Raw Normal View History

#![feature(plugin)]
#![plugin(rocket_codegen)]
extern crate rocket;
2016-12-27 22:35:14 +00:00
extern crate config;
2016-12-27 22:35:14 +00:00
// This example's illustration is the Rocket.toml file.
fn main() {
rocket::ignite().mount("/hello", routes![config::hello]).launch();
}