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