From 98fb79b85e3cfbb547e5340b30623511daf09ef5 Mon Sep 17 00:00:00 2001 From: David Blajda Date: Wed, 8 May 2019 15:38:37 +0000 Subject: :WIP: Move types to a different crate --- src/helix/namespaces/mod.rs | 26 -------------------------- 1 file changed, 26 deletions(-) delete mode 100644 src/helix/namespaces/mod.rs (limited to 'src/helix/namespaces/mod.rs') diff --git a/src/helix/namespaces/mod.rs b/src/helix/namespaces/mod.rs deleted file mode 100644 index 1d4239a..0000000 --- a/src/helix/namespaces/mod.rs +++ /dev/null @@ -1,26 +0,0 @@ -use std::marker::PhantomData; - -pub use super::Client; -pub use crate::client::{RatelimitKey, ClientTrait, ApiRequest, IterableApiRequest, ParamList}; -pub use std::collections::BTreeMap; -pub use reqwest::Method; -pub use super::models; - -pub mod clips; -pub mod users; -pub mod videos; -pub mod auth; - -pub struct Namespace { - client: Client, - _type: PhantomData -} - -impl Namespace { - pub fn new(client: &Client) -> Self { - Namespace { - client: client.clone(), - _type: PhantomData, - } - } -} -- cgit v1.2.3