1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
#![doc = include_str!("../README.md")]
#![forbid(unsafe_code)]

pub mod common;
pub mod constants;
#[macro_use]
mod http_client;
pub mod types;
pub mod v5;

pub use constants::*;
pub use http_client::{HttpClient, HttpClientRef};
pub use v5::error::Error;
pub use v5::MangaDexClient;
pub use v5::Result;