hello_client/
hello_client.rs

1#[tokio::main]
2async fn main() -> Result<(), Box<dyn std::error::Error>> {
3    let client = zeebe_rs::Client::builder()
4        .with_address("http://localhost", 26500)
5        .build()
6        .await?;
7
8    let topology = client.topology().send().await;
9    println!("{:?}", topology);
10
11    Ok(())
12}