some_random_api/structs/
animal.rs

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