Crates.io | dtz |
lib.rs | dtz |
version | 0.6.4 |
source | src |
created_at | 2024-03-13 13:43:00.362372 |
updated_at | 2024-11-06 11:10:24.613935 |
description | The DownToZero Cloud SDK |
homepage | |
repository | https://github.com/DownToZero-Cloud/dtz-sdk-for-rust |
max_upload_size | |
id | 1171691 |
size | 5,620 |
A base crate for the DownToZero Cloud SDK
The dtz
-crate only exposes the dtz-config
crate which covers the API client and authentication requirements.
All service specific functionality is exposed through features.
Retrieving the current Context.
[dependencies]
tokio = { version = "1", features = ["full] }
dtz = { version = "*", features = ["core"] }
#[tokio::main]
use std::str::FromStr;
use uuid::Uuid;
async fn main() {
let config = dtz::Configuration {
api_key: Some("some api key".to_string()),
..Default::default()
};
let ctx_id = "00000000-0000-0000-0000-000000000000";
let result = dtz::core::apis::default_api::get_context(&config, ctx_id)
.await
.unwrap();
println!("result: {result:?}");
}