Rocket/examples/hello/src/main.rs

39 lines
827 B
Rust
Raw Normal View History

#![feature(plugin)]
#![plugin(rocket_macros)]
extern crate rocket;
use rocket::Rocket;
use std::fs::File;
#[route(GET, path = "/")]
fn simple() -> File {
File::open("/tmp/index.html").unwrap()
}
#[route(GET, path = "/hello/")]
fn simple2() -> &'static str {
"Hello, world!"
}
#[route(GET, path = "/hello")]
fn simple3() -> String {
String::from("Hello, world!")
}
#[route(GET, path = "/<name>/<age>")]
2016-03-18 03:37:34 +00:00
fn simple4(name: &str, age: i8) -> String {
format!("Hello, {} year old named {}!", age, name)
}
#[route(GET, path = "/something")]
fn simple5() -> &'static str {
"hi"
}
fn main() {
let mut rocket = Rocket::new("localhost", 8000);
rocket.mount("/", routes![simple, simple2, simple3, simple4, simple5]);
rocket.mount_and_launch("/hello/", routes![simple, simple3, simple4, simple5]);
}