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;
}