3个版本
0.1.2 | 2021年1月7日 |
---|---|
0.1.1 | 2018年4月19日 |
0.1.0 | 2018年4月19日 |
12 in #push-notifications
5KB
Push More:通过Telegram即时发送通知
这是一个用于Push More服务的Rust crate,可以轻松通过Telegram发送通知。
用法
将此添加到你的Cargo.toml
[dependencies]
pushmore = "0.1"
并将其添加到你的crate根目录
extern crate pushmore;
use pushmore::PushMore;
然后你可以按照以下方式使用它
let client = PushMore::new(); // This will use the key stored in the PUSH_MORE_KEY environment variable.
// or
let client = PushMore::new_with_key("<pushmore key>".to_string());
client.send("hello!".to_string());
待办事项
- 将底层的
reqwest
库替换为hyper
库以减轻依赖。 - 添加测试
依赖关系
~2MB
~61K SLoC