getpocket 0.2.7

Rust crate for GetPocket API (https://getpocket.com/)
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
mod client;
pub use client::GetPocket;

mod ext;
pub use ext::adding;
pub use ext::modifying;
pub use ext::retrieving;

mod request;
pub use request::ApiRequestError;

pub use client::{
    RecordItemContentType, RecordItemDetailType, RecordItemFavorite, RecordItemSort,
    RecordItemState, RecordItemTag,
};