pocketcasts 0.1.4

Pocketcasts (unofficial) API client.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#[macro_use]
extern crate serde_derive;
#[macro_use]
extern crate failure_derive;

extern crate failure;
extern crate reqwest;
extern crate serde;
extern crate serde_json;

mod error;

mod client;
pub mod model;

pub use self::client::Pocketcasts;