imgurs_client/
lib.rs

1//! Imgur client implementation
2#[deny(clippy::all)]
3#[deny(unsafe_code)]
4pub mod client;
5pub mod error;
6pub mod response;
7pub mod traits;
8
9pub mod endpoints {
10    //! API endpoints
11    pub mod account;
12    pub mod authorization;
13    pub mod gallery;
14}