Skip to content

Commit

Permalink
github.App: Use *Timestamp instead of *time.Time (#1179)
Browse files Browse the repository at this point in the history
  • Loading branch information
aidansteele authored and gmlewis committed Jun 11, 2019
1 parent 361256a commit d695b5b
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions github/apps.go
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ type App struct {
Description *string `json:"description,omitempty"`
ExternalURL *string `json:"external_url,omitempty"`
HTMLURL *string `json:"html_url,omitempty"`
CreatedAt *time.Time `json:"created_at,omitempty"`
UpdatedAt *time.Time `json:"updated_at,omitempty"`
CreatedAt *Timestamp `json:"created_at,omitempty"`
UpdatedAt *Timestamp `json:"updated_at,omitempty"`
}

// InstallationToken represents an installation token.
Expand Down
8 changes: 4 additions & 4 deletions github/github-accessors.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit d695b5b

Please sign in to comment.