mirror of
https://github.com/rwf2/Rocket.git
synced 2025-01-07 10:12:36 +00:00
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" }
|