mirror of https://github.com/rwf2/Rocket.git
17 lines
258 B
Rust
17 lines
258 B
Rust
|
#![feature(plugin)]
|
||
|
#![plugin(rocket_codegen)]
|
||
|
|
||
|
extern crate rocket;
|
||
|
|
||
|
#[get("/", rank = 1)]
|
||
|
fn get1() -> &'static str { "hi" }
|
||
|
|
||
|
#[get("/", rank = 2)]
|
||
|
fn get2() -> &'static str { "hi" }
|
||
|
|
||
|
#[get("/", rank = 3)]
|
||
|
fn get3() -> &'static str { "hi" }
|
||
|
|
||
|
fn main() {
|
||
|
}
|