ts3
A WIP ts3 query interface library
Examples
use Client;
async
A WIP ts3 query interface library
use ts3::Client;
#[tokio::main]
async fn main() -> Result<(), Box<dyn std::error::Error + Send + Sync>> {
// Create a new client and connect to the server query interface
let client = Client::new("localhost:10011").await?;
// switch to virtual server with id 1
client.use_sid(1).await?;
Ok(())
}