diff options
Diffstat (limited to 'twitch_api/src/helix/namespaces/users.rs')
-rw-r--r-- | twitch_api/src/helix/namespaces/users.rs | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/twitch_api/src/helix/namespaces/users.rs b/twitch_api/src/helix/namespaces/users.rs index 2e922d6..1bbec4a 100644 --- a/twitch_api/src/helix/namespaces/users.rs +++ b/twitch_api/src/helix/namespaces/users.rs @@ -7,7 +7,6 @@ type UsersNamespace = Namespace<Users>; impl UsersNamespace { pub fn users<S: ToString>(self, ids: &[S], logins: &[S]) -> ApiRequest<DataContainer<User>> { - use self::users; users(self.client, ids, logins) } } |