aboutsummaryrefslogtreecommitdiff
path: root/src/main.rs
blob: 96324d7b4a69e52f4953bb91ac71172e7d5324c9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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