Add missing Response types.

This commit is contained in:
Victor Berger 2016-12-24 09:10:56 +01:00
parent 5b23117973
commit 72b12557ec
2 changed files with 4 additions and 4 deletions

View File

@ -34,7 +34,7 @@ pub mod send_event {
type BodyParams = BodyParams;
type PathParams = PathParams;
type QueryParams = ();
type Response = ();
type Response = Response;
fn method() -> ::Method {
::Method::Put

View File

@ -28,7 +28,7 @@ pub mod send_state {
type BodyParams = ::serde_json::Value;
type PathParams = PathParams;
type QueryParams = ();
type Response = ();
type Response = Response;
fn method() -> ::Method {
::Method::Put
@ -77,7 +77,7 @@ pub mod send_state_key {
type BodyParams = ::serde_json::Value;
type PathParams = PathParams;
type QueryParams = ();
type Response = ();
type Response = Response;
fn method() -> ::Method {
::Method::Put
@ -127,7 +127,7 @@ pub mod send_event {
type BodyParams = ::serde_json::Value;
type PathParams = PathParams;
type QueryParams = ();
type Response = ();
type Response = Response;
fn method() -> ::Method {
::Method::Put