summaryrefslogtreecommitdiff
path: root/src/helix/namespaces
diff options
context:
space:
mode:
authorDavid Blajda <blajda@hotmail.com>2018-12-24 23:08:26 +0000
committerDavid Blajda <blajda@hotmail.com>2018-12-24 23:08:26 +0000
commit2f1682162174f5fee4f4297f616e8f66b7c70dca (patch)
treedad5dff552442b1801553c9944a1967121e667cb /src/helix/namespaces
parent298806448db4a4e74306ec648bfc0e43a76c6bc3 (diff)
Fix lifetimes on ratelimit trait
Diffstat (limited to 'src/helix/namespaces')
-rw-r--r--src/helix/namespaces/clips.rs3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/helix/namespaces/clips.rs b/src/helix/namespaces/clips.rs
index 19293cc..a73d2e9 100644
--- a/src/helix/namespaces/clips.rs
+++ b/src/helix/namespaces/clips.rs
@@ -1,9 +1,8 @@
use std::collections::BTreeMap;
-use super::super::models::{DataContainer, PaginationContainer, User, Video, Clip};
+use super::super::models::{DataContainer, Clip};
use super::super::Client;
use super::super::ClientTrait;
use super::super::RatelimitKey;
-const API_DOMAIN: &'static str = "api.twitch.tv";
use super::Namespace;
pub struct Clips {}