blob: a57a976c2a3fcfba4657ebdd0d4795e08431b565 (
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: 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("./signalboost.dhall").parse()?;
Ok(())
}
}
|