diff --git a/repo.go b/repo.go index 14a5a0b..f58d3af 100644 --- a/repo.go +++ b/repo.go @@ -23,11 +23,16 @@ type Repository struct { ID int64 `json:"id"` Owner *User `json:"owner"` FullName string `json:"full_name"` + Description string `json:"description"` Private bool `json:"private"` Fork bool `json:"fork"` HtmlUrl string `json:"html_url"` CloneUrl string `json:"clone_url"` SshUrl string `json:"ssh_url"` + Stars int `json:"stars_count"` + Forks int `json:"forks_count"` + Watchers int `json:"watchers_count"` + OpenIssues int `json:"open_issues_count"` Permissions Permission `json:"permissions"` }