git_author.rs

1/// Represents the common denominator of most git hosting authors
2#[derive(Debug)]
3pub struct GitAuthor {
4    pub avatar_url: String,
5}