mangadex_api/constants.rs
pub const API_URL: &str = "https://api.mangadex.org";
pub const AUTH_URL: &str = "https://auth.mangadex.org";
/// URL for downloading media such as cover images.
pub const CDN_URL: &str = "https://uploads.mangadex.org";
/// A sandbox api url for Mangadex Developpers
///
/// Disclaimer : I don't know if it's good to use api.mangadex.dev
/// but i'll put this here if someone is interested
pub const API_DEV_URL: &str = "https://api.mangadex.dev";
pub const AUTH_DEV_URL: &str = "https://auth.mangadex.dev";