diff options
Diffstat (limited to 'src/main.rs')
| -rw-r--r-- | src/main.rs | 33 |
1 files changed, 0 insertions, 33 deletions
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 |
