jx3-api

Crates.iojx3-api
lib.rsjx3-api
version0.1.0
created_at2025-10-08 11:27:41.013781+00
updated_at2025-10-08 11:27:41.013781+00
descriptionJX3API的Rust SDK
homepage
repositoryhttps://github.com/Natane0808/jx3api-rs
max_upload_size
id1873888
size83,481
Natane (Natane0808)

documentation

README

jx3api-rs

剑侠三API的Rust SDK

路线图

  • 免费
  • vip1
  • vip2
  • WebSocket

安装

Cargo

cargo add jx3-api

Github

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(())
}

Commit count: 0

cargo fmt