anaso_site_api_models 0.0.4

API models for Ana.so
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
use std::sync::Arc;

use serde::{Deserialize, Serialize};

use crate::stela::Hero;

/// Some grand information.
#[derive(Debug, Deserialize, Serialize)]
pub struct SectionHero {
    /// The hero to show.
    pub hero: Arc<Hero>,
}