boundary-api 0.0.1-alpha.2

Rust client for Hashicorp Boundary
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
use std::error::Error;

#[tokio::main]
async fn main() -> Result<(), Box<dyn Error>> {
    let mut client = boundary_api::BoundaryClient::default();

    let res = client.authenticate().await?;

    println!("{:?}", res);

    Ok(())
}