mirror of
https://github.com/rwf2/Rocket.git
synced 2025-01-04 00:32:39 +00:00
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() {
|
|
}
|