# PushyAPI unofficial pushy.me (https://pushy.me) wrapper ## Usage ```rust let pushy_ids: Vec = vec!["id1","id2"]; let mut data: HashMap = 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())); } } ```