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

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

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

    pub twitter: Option<String>,
}

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

        Ok(())
    }
}