1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
pub mod builder;
mod constants;
pub mod responses;
pub mod types;
#[cfg(feature = "v2")]
pub mod v2;

pub trait MangaDexClient {
    fn client(&self) -> &reqwest::Client;

    fn base_url(&self) -> &str;

    fn api_url(&self) -> String;
}