summaryrefslogtreecommitdiff
path: root/src/bin/main.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/bin/main.rs')
-rw-r--r--src/bin/main.rs10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/bin/main.rs b/src/bin/main.rs
index 8b46196..c5b7ea2 100644
--- a/src/bin/main.rs
+++ b/src/bin/main.rs
@@ -28,12 +28,22 @@ fn main() {
()
});
+ let clip2 = authed_client
+ .clips()
+ .clip(&"EnergeticApatheticTarsierThisIsSparta")
+ .map_err(|err| {
+ println!("{:?}", err);
+ ()
+ });
+
+ /*
let clip2 = client.kraken
.clip(&"EnergeticApatheticTarsierThisIsSparta")
.map_err(|err| {
println!("{:?}", err);
()
});
+ */
/* Prevents tokio from **hanging**
* since tokio::run blocks the current thread and waits for the entire runtime