| Crates.io | jx3-api |
| lib.rs | jx3-api |
| version | 0.1.0 |
| created_at | 2025-10-08 11:27:41.013781+00 |
| updated_at | 2025-10-08 11:27:41.013781+00 |
| description | JX3API的Rust SDK |
| homepage | |
| repository | https://github.com/Natane0808/jx3api-rs |
| max_upload_size | |
| id | 1873888 |
| size | 83,481 |
剑侠三API的Rust SDK
cargo add jx3-api
Cargo.toml添加github仓库地址
jx3-api = { git = "https://github.com/Natane0808/jx3api-rs" }
use jx3_api::Jx3ApiClient;
#[tokio::main]
async fn main() -> Result<(), Box<dyn std::error::Error>> {
let client = Jx3ApiClient::new();
let resp = client.calendar(None, None).await?;
println!("resp:{:#?}", resp);
Ok(())
}