diff options
author | David Blajda <blajda@hotmail.com> | 2018-12-19 19:06:51 +0000 |
---|---|---|
committer | David Blajda <blajda@hotmail.com> | 2018-12-19 19:06:51 +0000 |
commit | a8e42248cf617767dfd890c0832ea233bb4608fc (patch) | |
tree | 0b74e6638b64eb24f0b29ce9d6195ba26f3d2537 /src/bin | |
parent | 17893388feed5f91ebd254ac7ad8e2801ca8a6d0 (diff) |
Another Barrier reimplementation
Diffstat (limited to 'src/bin')
-rw-r--r-- | src/bin/main.rs | 10 |
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 |