raiden 0.1.0

A scrapper for the https://genshin.gg database.
Documentation
1
2
3
4
5
6
7
8
9
10
use serde::{Deserialize, Serialize};

#[derive(Deserialize, Serialize, Clone)]
pub struct Consumable {
    pub image: String,
    pub name: String,
    pub rarity: u8,
    pub bonus_description: String,
    pub ingredients: Vec<String>,
}