removed omitempty from the forkable boolean value

This commit is contained in:
Jason Reeves
2020-10-28 15:52:44 -05:00
parent 06db60ee0e
commit ae1adf0be1
2 changed files with 24 additions and 1 deletions

View File

@@ -19,7 +19,7 @@ type Repository struct {
Name string `json:"name,omitempty"`
Slug string `json:"slug,omitempty"`
Description string `json:"description,omitempty"`
Forkable bool `json:"forkable,omitempty"`
Forkable bool `json:"forkable"`
Public bool `json:"public,omitempty"`
Links struct {
Clone []CloneUrl `json:"clone,omitempty"`