5 个版本
0.1.4 | 2024年3月17日 |
---|---|
0.1.3 | 2024年3月17日 |
0.1.2 | 2024年3月17日 |
0.1.1 | 2024年3月17日 |
0.1.0 | 2024年3月17日 |
#259 in #sdk
12KB
188 行
ITTV SDK
用于与 ITTV API 交互的 Rust SDK。
安装
将以下内容添加到您的 Cargo.toml
文件中
[dependencies]
ittv_sdk = "0.1"
用法
use ittv_sdk::{Client, NewCustomer};
#[tokio::main]
async fn main() {
let client = Client::new("your_api_key");
let customer = NewCustomer {
name: "John Doe",
// ...
};
let response = client
.create_customer(customer)
.await
.unwrap();
println!("{:?}", response);
}
lib.rs
:
ITTV SDK
用于 ITTV API 的 Rust SDK。
依赖关系
~3–18MB
~240K SLoC