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