#api #read #docs #go #reason

analyticord

围绕 Analyticord API 的简单封装

4 个版本

使用旧的 Rust 2015

0.1.2 2017 年 8 月 20 日
0.1.1 2017 年 8 月 20 日
0.1.0 2017 年 8 月 17 日
0.0.2 2017 年 8 月 20 日

#16 in #reason

每月 22 次下载

WTFPL 许可证

13KB
222 代码行

Analyticord.rs

Go,阅读文档。它们有存在的理由。


lib.rs:

此包允许您与 Analyticord 后端交互。

示例

use analyticord::client::Client;
use analyticord::events::Messages;

let client = Client::default("YOUR_TOKEN".into());
if client.is_err() {
print!("{}", "borked token, try again.");
std::process::exit(0);
}
let res = client.unwrap().send_event(Messages { amount: 10 });
match res {
Ok(data)    => print!("Successfully submitted. ID: {}", data.id),
Err(error)  => print!("Error: {:?}", error),
}

依赖项

~11–20MB
~297K SLoC