Browse Source

Added missing fields in Gist class

kyokomi 11 years ago
committed by Will Norris
parent
commit
6340473d06
1 changed files with 1 additions and 0 deletions
  1. +1
    -0
      github/gists.go

+ 1
- 0
github/gists.go View File

@ -30,6 +30,7 @@ type Gist struct {
GitPullURL *string `json:"git_pull_url,omitempty"` GitPullURL *string `json:"git_pull_url,omitempty"`
GitPushURL *string `json:"git_push_url,omitempty"` GitPushURL *string `json:"git_push_url,omitempty"`
CreatedAt *time.Time `json:"created_at,omitempty"` CreatedAt *time.Time `json:"created_at,omitempty"`
UpdatedAt *time.Time `json:"updated_at,omitempty"`
} }
func (g Gist) String() string { func (g Gist) String() string {


Loading…
Cancel
Save