mirror of https://github.com/rwf2/Rocket.git
11 lines
266 B
Rust
11 lines
266 B
Rust
|
// #[post("/<_name>?<_query>", format = "application/json", data = "<user>", rank = 2)]
|
||
|
// fn get(
|
||
|
// _name: &RawStr,
|
||
|
// _query: User,
|
||
|
// user: Form<User>,
|
||
|
// _cookies: Cookies
|
||
|
// ) -> String {
|
||
|
// format!("{}:{}", user.name, user.nickname)
|
||
|
// }
|
||
|
|