mangadex_api/
constants.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
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";