Browse Source

Add missing 'Type' field to 'GistFile' struct

Luke Young 9 years ago
parent
commit
073020b6c4
1 changed files with 1 additions and 0 deletions
  1. +1
    -0
      github/gists.go

+ 1
- 0
github/gists.go View File

@ -42,6 +42,7 @@ type GistFilename string
type GistFile struct {
Size *int `json:"size,omitempty"`
Filename *string `json:"filename,omitempty"`
Type *string `json:"type,omitempty"`
RawURL *string `json:"raw_url,omitempty"`
Content *string `json:"content,omitempty"`
}


Loading…
Cancel
Save