diff options
| author | Max Audron <audron@cocaine.farm> | 2020-01-10 16:07:59 +0100 |
|---|---|---|
| committer | Max Audron <audron@cocaine.farm> | 2020-01-10 16:07:59 +0100 |
| commit | be7d85b0b27c35dd733c66f5ca5a8067e1eb935f (patch) | |
| tree | f17f8231074fc3226de39e5e77f3633854b5e4d2 /src/main.rs | |
init
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 |
