Add owner, name to Repo

This commit is contained in:
Graham Christensen 2017-11-10 19:55:25 -05:00
parent 1783d3f583
commit b17aed722c
No known key found for this signature in database
GPG key ID: ACA1C1D120C83D5C

View file

@ -1,6 +1,8 @@
#[derive(Serialize, Deserialize, Debug, Clone)] #[derive(Serialize, Deserialize, Debug, Clone)]
pub struct Repo { pub struct Repo {
pub owner: String,
pub name: String,
pub full_name: String, pub full_name: String,
pub clone_url: String, pub clone_url: String,
} }