use rqpush::Notification;
fn main() {
let mut notification = Notification::init("Example", "An example", "This is an example notification.");
match notification.send("http://localhost:8000", 122, 0, Some("foo")) {
Ok(r) => println!("Success: {:?}", r),
Err(e) => println!("Failure: {:?}", e),
}
}