PushyAPI
unofficial pushy.me (https://pushy.me) wrapper
Usage
```rust
let pushyids: Vec = vec!["id1","id2"];
let mut data: HashMap = HashMap::new();
data.insert(String::from("message"), String::from("Message"));
match pushyapi::sendmessage(pushyids, data, None).await {
Ok(response) => {
log::debug(format!("Pushy Response: {:?}", response));
},
Err(error) => {
log::error(format!("Failed to send pushy message: {}", error.tostring()));
}
}
```