r621 0.3.3

Provides a client to access e621
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
pub mod client;
pub mod post;
pub mod query;
mod serde_helper;

pub type Id = u64;
pub type FileSize = u64;
pub type ImageDimension = u64;
pub type VoteCount = i32;

pub mod prelude {
    pub use crate::client::Client;
    pub use crate::client::Authentication;
    pub use crate::post::Post;
}