Skip to content

Commit 3693f6a

Browse files
committed
Minor update for PR #48
1 parent 2a7c1a1 commit 3693f6a

File tree

2 files changed

+7
-9
lines changed

2 files changed

+7
-9
lines changed

gogs.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ import (
1414
)
1515

1616
func Version() string {
17-
return "0.12.3"
17+
return "0.12.4"
1818
}
1919

2020
// Client represents a Gogs API client.

issue_comment.go

+6-8
Original file line numberDiff line numberDiff line change
@@ -13,14 +13,12 @@ import (
1313

1414
// Comment represents a comment in commit and issue page.
1515
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"`
2422
}
2523

2624
// ListIssueComments list comments on an issue.

0 commit comments

Comments
 (0)