From be7d85b0b27c35dd733c66f5ca5a8067e1eb935f Mon Sep 17 00:00:00 2001 From: Max Audron Date: Fri, 10 Jan 2020 16:07:59 +0100 Subject: init --- src/main.rs | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 src/main.rs (limited to 'src/main.rs') diff --git a/src/main.rs b/src/main.rs new file mode 100644 index 0000000..96324d7 --- /dev/null +++ b/src/main.rs @@ -0,0 +1,19 @@ +mod consts; +mod net; +mod util; +mod types; + +//use util::Hex; + +fn main() -> std::io::Result<()> { + let server = net::connect( + "localhost", + 4242, + false, + false, + )?; + + //server.login("audron", "audron"); + + Ok(()) +} // the stream is closed here -- cgit v1.2.3