aboutsummaryrefslogtreecommitdiff
path: root/src/signalboost.rs
blob: f580d7c129c43d84302ece5d08c21d13341e7a1d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
use serde::Deserialize;

#[derive(Clone, Debug, Deserialize)]
pub struct Person {
    pub name: String,
    pub tags: Vec<String>,

    #[serde(rename = "gitLink")]
    pub git_link: String,

    pub twitter: String,
}

#[cfg(test)]
mod tests {
    use color_eyre::eyre::Result;
    #[test]
    fn load() -> Result<()> {
        let _people: Vec<super::Person> = serde_dhall::from_file("./signalboost.dhall").parse()?;

        Ok(())
    }
}