Files
2026-05-21 15:27:59 +03:00

13 lines
366 B
Rust

// cargo run -p tdlib-rs --example test_ci --features default
// cargo run -p tdlib-rs --example test_ci --features download-tdlib
// cargo run -p tdlib-rs --example test_ci --features pkg-config
#[tokio::main]
async fn main() {
// Create the client object for testing
let _client_id = tdlib_rs::create_client();
// Exit 0
std::process::exit(0);
}