diff options
author | David Blajda <blajda@hotmail.com> | 2018-12-30 20:08:09 +0000 |
---|---|---|
committer | David Blajda <blajda@hotmail.com> | 2018-12-30 20:08:09 +0000 |
commit | 70629ed0dc950d4f1c83ef15a6b4b65700338d3d (patch) | |
tree | 0060290b9d1a5b19e137a31ba387150fccff639e /src/client.rs | |
parent | 96a500350c29106e87bc22839c502e98459b4cb0 (diff) |
:WIP: Reworking types
Diffstat (limited to 'src/client.rs')
-rw-r--r-- | src/client.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/client.rs b/src/client.rs index 3371670..66f32d6 100644 --- a/src/client.rs +++ b/src/client.rs @@ -882,6 +882,7 @@ impl<T: DeserializeOwned + 'static + Send> Future for ApiRequest<T> { err }) .map(move |mut response| { + println!("{:?}", response); if let Some(key) = key_ok { if let Some(limits) = client_ok.ratelimit(key) { let mut mut_limits = limits.inner.lock().unwrap(); |