mirror of https://github.com/rwf2/Rocket.git
21 lines
371 B
Rust
21 lines
371 B
Rust
#![feature(plugin)]
|
|
#![plugin(rocket_codegen)]
|
|
|
|
extern crate rocket;
|
|
|
|
#[cfg(test)] mod tests;
|
|
|
|
#[get("/hello/<name>/<age>")]
|
|
fn hello(name: String, age: u8) -> String {
|
|
format!("Hello, {} year old named {}!", age, name)
|
|
}
|
|
|
|
#[get("/hello/<name>")]
|
|
fn hi(name: String) -> String {
|
|
name
|
|
}
|
|
|
|
fn main() {
|
|
rocket::ignite().mount("/", routes![hello, hi]).launch();
|
|
}
|