An async library to connect to the ts3 serverquey interface.
``` use ts3::Client;
async fn main() -> Result<(), Box
// Connect to virtualserver 1
client.use_sid(1).await?;
// Use whoami to fetch info about the query client
let data = client.whoami().await?;
println!("{}", data);
} ```