Getting started with Rust
Installation
cargo add architect-api
cargo add architect-sdk
Example
use anyhow::Result;
use architect_sdk::Architect;
#[tokio::main]
async fn main() -> Result<()> {
let client = Architect::connect("<api key>", "<api secret>").await?;
Ok(())
}
Last updated