diff options
author | David Blajda <blajda@hotmail.com> | 2018-12-16 21:45:58 +0000 |
---|---|---|
committer | David Blajda <blajda@hotmail.com> | 2018-12-16 21:45:58 +0000 |
commit | 23ea9413cd0e29eb451df08c5c799d64f56a1342 (patch) | |
tree | 226a2bc179e41c675aa0ed34ddc1fda7c55c277a /src/bin | |
parent | 27267ed98fc839b51ae4621fd1aa230f7f068bdc (diff) |
Move endpoints functions into namespaces
Diffstat (limited to 'src/bin')
-rw-r--r-- | src/bin/main.rs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/bin/main.rs b/src/bin/main.rs index 3467711..dbaaa41 100644 --- a/src/bin/main.rs +++ b/src/bin/main.rs @@ -14,7 +14,8 @@ fn main() { let client = Client::new(client_id); - let clip = client.helix.clips() + let clip = client.helix + .clips() .clip(&"EnergeticApatheticTarsierThisIsSparta") .map_err(|err| { println!("{:?}", err); |