mirror of
https://github.com/rwf2/Rocket.git
synced 2025-01-01 07:12:41 +00:00
13 lines
226 B
Rust
13 lines
226 B
Rust
#![feature(plugin)]
|
|
#![plugin(rocket_codegen)]
|
|
|
|
extern crate rocket;
|
|
|
|
use rocket::Data;
|
|
|
|
#[get("/", data = "<something>")]
|
|
//~^ ERROR payload supporting methods
|
|
fn get(something: Data) -> &'static str { "hi" }
|
|
|
|
fn main() { }
|