9个版本
0.4.0 | 2024年3月21日 |
---|---|
0.3.2 | 2021年12月7日 |
0.3.1 | 2021年3月12日 |
0.3.0 | 2021年1月5日 |
0.1.1 | 2019年6月12日 |
#124 in HTTP客户端
每月298次下载
24KB
562 行
dbl-rs
Rust对top.gg / discordbots.org API的绑定。
用法
将此添加到您的 Cargo.toml
[dependencies]
dbl-rs = "0.3"
示例
use dbl::types::ShardStats;
use dbl::Client;
#[tokio::main]
async fn main() {
let token = match std::env::var("DBL_TOKEN") {
Ok(token) => token,
_ => panic!("missing token"),
};
let client = Client::new(token).expect("failed client");
let bot = 565_030_624_499_466_240;
let stats = ShardStats::Cumulative {
server_count: 1234,
shard_count: None,
};
match client.update_stats(bot, stats).await {
Ok(_) => println!("Update successful"),
Err(e) => eprintln!("{}", e),
}
}
示例
有关入门示例,请参阅示例目录。
许可
根据以下任一许可授权:
- Apache License, Version 2.0 (LICENSE-APACHE 或 http://apache.org/licenses/LICENSE-2.0)
- MIT许可 (LICENSE-MIT 或 http://opensource.org/licenses/MIT)
贡献
除非您明确声明,否则您提交的任何有意包含在作品中的贡献,根据Apache-2.0许可证的定义,应按上述方式双许可,而无需任何附加条款或条件。
依赖关系
~4–19MB
~266K SLoC