From c629ed492341673109b8ed2e01b96300c8d0b65f Mon Sep 17 00:00:00 2001 From: Max Audron Date: Thu, 23 Jan 2020 15:58:24 +0100 Subject: sort features --- src/main.rs | 33 --------------------------------- 1 file changed, 33 deletions(-) delete mode 100644 src/main.rs (limited to 'src/main.rs') diff --git a/src/main.rs b/src/main.rs deleted file mode 100644 index 5c34bae..0000000 --- a/src/main.rs +++ /dev/null @@ -1,33 +0,0 @@ -mod consts; - -#[cfg(features = "client")] -mod client; - -mod protocol; - -#[macro_use] -mod util; - -#[macro_use] -extern crate failure; - -#[cfg(test)] -mod tests; - -use failure::Error; - -#[tokio::main] -async fn main() -> Result<(), Error> { - - let mut client = client::Client::connect( - "localhost", - 4242, - false, - false, - ).await.unwrap(); - - client.run().await; -// client.login("audron", "audron", client_init); - - Ok(()) -} // the stream is closed here -- cgit v1.2.3