mirror of https://github.com/rwf2/Rocket.git
8 lines
173 B
Rust
8 lines
173 B
Rust
|
#![feature(plugin, decl_macro)]
|
||
|
#![plugin(rocket_codegen)]
|
||
|
|
||
|
extern crate rocket;
|
||
|
|
||
|
#[get("/", data = "<something>")]
|
||
|
fn get(something: rocket::Data) -> &'static str { "hi" }
|