File tree Expand file tree Collapse file tree 2 files changed +12
-11
lines changed Expand file tree Collapse file tree 2 files changed +12
-11
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.7.2 "
17
+ return "0.7.3 "
18
18
}
19
19
20
20
// Client represents a Gogs API client.
Original file line number Diff line number Diff line change @@ -92,16 +92,17 @@ type PayloadCommit struct {
92
92
}
93
93
94
94
type PayloadRepo struct {
95
- ID int64 `json:"id"`
96
- Name string `json:"name"`
97
- URL string `json:"url"`
98
- SSHURL string `json:"ssh_url"`
99
- CloneURL string `json:"clone_url"`
100
- Description string `json:"description"`
101
- Website string `json:"website"`
102
- Watchers int `json:"watchers"`
103
- Owner * PayloadAuthor `json:"owner"`
104
- Private bool `json:"private"`
95
+ ID int64 `json:"id"`
96
+ Name string `json:"name"`
97
+ URL string `json:"url"`
98
+ SSHURL string `json:"ssh_url"`
99
+ CloneURL string `json:"clone_url"`
100
+ Description string `json:"description"`
101
+ Website string `json:"website"`
102
+ Watchers int `json:"watchers"`
103
+ Owner * PayloadAuthor `json:"owner"`
104
+ Private bool `json:"private"`
105
+ DefaultBranch string `json:"default_branch"`
105
106
}
106
107
107
108
// _________ __
You can’t perform that action at this time.
0 commit comments