4个版本
0.1.3 | 2023年6月26日 |
---|---|
0.1.2 | 2023年6月26日 |
0.1.1 | 2023年6月21日 |
0.1.0 | 2023年6月21日 |
111 在 #send
4KB
PushyAPI
非官方pushy.me (https://pushy.me) 封装器
用法
let pushy_ids: Vec<String> = vec!["id1","id2"];
let mut data: HashMap<String, String> = HashMap::new();
data.insert(String::from("message"), String::from("Message"));
match pushyapi::send_message(pushy_ids, data, None).await {
Ok(response) => {
log::debug(format!("Pushy Response: {:?}", response));
},
Err(error) => {
log::error(format!("Failed to send pushy message: {}", error.to_string()));
}
}
依赖项
~4–16MB
~229K SLoC