pushover 0.4.0

A wrapper for the Pushover API.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
use error_chain::error_chain;

error_chain! {
    foreign_links {
        Json(::serde_json::Error);
        Io(::std::io::Error);
        Reqqest(::reqwest::Error);
    }

    errors {
        PushoverError {
            status: i32,
            errors: Vec<String>,
            request: String
        }
    }
}