1use serde::{Deserialize, Serialize}; 2/** 3 * Author is a struct that represents the author of a repo. 4 */ 5#[derive(Serialize, Deserialize, Debug)] 6pub struct Author { 7 pub service: String, 8 pub username: String, 9 pub name: String, 10}