1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#[macro_use]
extern crate failure;
extern crate oauth_client;
extern crate reqwest;
extern crate serde;
#[macro_use]
extern crate serde_derive;
extern crate serde_json;

pub use self::client::{
    TumblrClient,
    blog::{
        GetBlogAvatarOptionalParams,
        GetBlogLikesOptionalParams,
        GetBlogFollowingOptionalParams,
        GetBlogFollowersOptionalParams,
        GetBlogPostsOptionalParams,
        GetBlogPostsQueueOptionalParams,
        GetBlogPostsDraftOptionalParams,
        GetBlogPostsSubmissionOptionalParams,
        LegacyPostOptionalParams,
        PostAction,
        PostType
    },
    user::{GetUserDashboardOptionalParams, GetUserLikesOptionalParams, GetUserFollowingOptionalParams},
};

mod client;