1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
//! miHoYo-API Wrapper is a API wrapper literally.
//!
//! ### Here's Original
//!
//! [genshin.py](https://github.com/thesadru/genshin.py) by [thesadru](https://github.com/thesadru)
//! With Grateful Respect.
//!
//!
//! ### Installation
//!
//! `$ cargo add mihoyo-api`
//!
//! Also
//!
//! ```toml
//! miHoYo-API = "0.1"
//! ```
//!
//! - Last edit: 22/10/2023


#![allow(non_snake_case)]


pub(crate) mod component;
mod model;
mod util;
pub mod types;
pub mod client;