summaryrefslogtreecommitdiff
path: root/src/bin/main.rs
diff options
context:
space:
mode:
authorDavid Blajda <blajda@hotmail.com>2018-12-19 19:06:51 +0000
committerDavid Blajda <blajda@hotmail.com>2018-12-19 19:06:51 +0000
commita8e42248cf617767dfd890c0832ea233bb4608fc (patch)
tree0b74e6638b64eb24f0b29ce9d6195ba26f3d2537 /src/bin/main.rs
parent17893388feed5f91ebd254ac7ad8e2801ca8a6d0 (diff)
Another Barrier reimplementation
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