From fd943651195a970aac2b066e3bdbb23253f73ce7 Mon Sep 17 00:00:00 2001 From: Max Audron Date: Fri, 16 Oct 2020 21:58:05 +0200 Subject: update --- src/bin/quassel-client.rs | 37 ------------------------------------- 1 file changed, 37 deletions(-) delete mode 100644 src/bin/quassel-client.rs (limited to 'src/bin') diff --git a/src/bin/quassel-client.rs b/src/bin/quassel-client.rs deleted file mode 100644 index 233d3ae..0000000 --- a/src/bin/quassel-client.rs +++ /dev/null @@ -1,37 +0,0 @@ -use failure::Error; - -extern crate libquassel; -use libquassel::client; - -extern crate tokio; -extern crate pretty_env_logger; - -#[tokio::main] -async fn main() -> Result<(), Error> { - pretty_env_logger::init(); - -// let mut client = client::Client::::connect( -// "cocaine.farm", -// 4242, -// true, -// ).await.unwrap(); - - let username = std::env::args().nth(1).expect("no username given"); - let password = std::env::args().nth(2).expect("no password given"); - - - let mut client = client::Client::>::connect_tls( - "cocaine.farm", - 4242, - true, - client::User { - name: username, - password: password, - } - ).await.unwrap(); - - client.run().await; -// client.login("audron", "audron", client_init); - - Ok(()) -} // the stream is closed here -- cgit v1.2.3 td> aboutsummaryrefslogtreecommitdiff
path: root/src (unfollow)
Commit message (Expand)AuthorLines
2021-06-05fix jb remote urlsMax Audron-4/+4
2021-06-05remove egress gateway configMax Audron-10/+0
2021-06-05update tanka dependenciesMax Audron-8/+8
2021-06-05fix init container nameMax Audron-1/+1
2021-06-05fix tanka dependency pathMax Audron-8/+8
2021-06-05switch to https url for tanka util libMax Audron-2/+2
2021-06-05bump version to 1.0.2Max Audron-2/+2
2021-06-05add tanka ci configurationMax Audron-1/+1
2021-06-05ready tanka deploy for CIMax Audron-32/+69
2021-06-05remove tanka vendoringMax Audron-27651/+0
2021-05-26Release 1.0.1Max Audron-3/+3
2021-05-26fix log breaking once buffer fullMax Audron-2/+33
2021-05-16add deployment stuffMax Audron-6/+27786
2021-05-15add container buildMax Audron-2/+35