File tree 2 files changed +7
-9
lines changed
2 files changed +7
-9
lines changed Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ import (
14
14
)
15
15
16
16
func Version () string {
17
- return "0.12.3 "
17
+ return "0.12.4 "
18
18
}
19
19
20
20
// Client represents a Gogs API client.
Original file line number Diff line number Diff line change @@ -13,14 +13,12 @@ import (
13
13
14
14
// Comment represents a comment in commit and issue page.
15
15
type Comment struct {
16
- ID int64 `json:"id"`
17
- HTMLURL string `json:"html_url"`
18
- PRURL string `json:"pull_request_url"`
19
- IssueURL string `json:"issue_url"`
20
- Poster * User `json:"user"`
21
- Body string `json:"body"`
22
- Created time.Time `json:"created_at"`
23
- Updated time.Time `json:"updated_at"`
16
+ ID int64 `json:"id"`
17
+ HTMLURL string `json:"html_url"`
18
+ Poster * User `json:"user"`
19
+ Body string `json:"body"`
20
+ Created time.Time `json:"created_at"`
21
+ Updated time.Time `json:"updated_at"`
24
22
}
25
23
26
24
// ListIssueComments list comments on an issue.
You can’t perform that action at this time.
0 commit comments