blob: 1041e765ff60fe95e0c8a1d153dcffb5dcdf62cb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
use azalea_client::connect::join_server;
#[tokio::main]
async fn main() {
println!("Hello, world!");
let address = "95.111.249.143:10000";
// let address = "localhost:63482";
let _response = join_server(&address.try_into().unwrap()).await.unwrap();
// println!("{}", response.description.to_ansi(None));
println!("connected");
}
|