1 2 3 4 5 6 7 8 9 10 11
use serde::{Deserialize, Serialize}; use uuid::Uuid; use super::mapping::Mappings; #[derive(Serialize, Deserialize, Debug)] pub struct Repository { pub url: String, pub uuid: Uuid, pub mappings: Mappings, }