1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
mod current;
mod info;
mod next;

pub use current::CurrentFund;
use info::FundInfo;
pub use next::NextFund;
use serde::{Deserialize, Serialize};

#[derive(Clone, Debug, Deserialize, Serialize, Default)]
pub struct StaticData {
    #[serde(default)]
    pub current_fund: CurrentFund,
    #[serde(default)]
    pub next_funds: Vec<NextFund>,
}