some_random_api/structs/
fact.rs

1use serde::Deserialize;
2
3#[derive(Debug, Deserialize)]
4pub struct Fact {
5    pub fact: String,
6}