diff options
author | David Blajda <blajda@hotmail.com> | 2018-12-20 23:42:45 +0000 |
---|---|---|
committer | David Blajda <blajda@hotmail.com> | 2018-12-20 23:42:45 +0000 |
commit | 298806448db4a4e74306ec648bfc0e43a76c6bc3 (patch) | |
tree | 1cdd90df0d65a513ad94588dae7621b03a906b3e /src/helix/namespaces/videos.rs | |
parent | 2bae9a4e8d8b77f8a99df6829547a60f883632a3 (diff) |
Split auth and unauth client and created ClientTrait
Diffstat (limited to 'src/helix/namespaces/videos.rs')
-rw-r--r-- | src/helix/namespaces/videos.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/helix/namespaces/videos.rs b/src/helix/namespaces/videos.rs index ad5ca28..7b8839b 100644 --- a/src/helix/namespaces/videos.rs +++ b/src/helix/namespaces/videos.rs @@ -3,7 +3,7 @@ use super::super::models::{DataContainer, PaginationContainer, User, Video, Clip use super::super::Client; use std::collections::BTreeMap; const API_DOMAIN: &'static str = "api.twitch.tv"; -use super::super::Namespace; +use super::Namespace; pub struct Videos {} type VideosNamespace = Namespace<Videos>; |