Rocket/examples/config/src/main.rs

14 lines
213 B
Rust
Raw Normal View History

#![feature(plugin)]
#![plugin(rocket_codegen)]
extern crate rocket;
#[get("/")]
fn hello() -> &'static str {
"Hello, world!"
}
fn main() {
rocket::ignite().mount_and_launch("/hello", routes![hello]);
}