blue_archive 0.5.2

A Blue Archive api wrapper for Rust, based off of SchaleDB's data: https://github.com/lonqie/SchaleDB
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
pub mod currency;
pub mod enemy;
pub mod equipment;
pub mod raid;
pub mod student;
pub mod summon;

use anyhow::Result;

use super::internal;
use crate::BlueArchiveError;
use reqwest::blocking::Client;

pub use self::{currency::*, enemy::*, equipment::*, raid::*, student::*, summon::*};