1 2 3 4 5 6 7 8 9
use serde::{Deserialize, Serialize}; #[derive(Serialize, Deserialize, Debug, Clone)] pub struct Endpoints { pub api: String, pub image: String, pub thumb: String, pub web: String, }