Create repo_branches.go
This commit is contained in:
parent
2f4342d6de
commit
10296af427
1 changed files with 16 additions and 0 deletions
16
repo_branches.go
Normal file
16
repo_branches.go
Normal file
|
@ -0,0 +1,16 @@
|
|||
package gogs
|
||||
|
||||
type Branch struct {
|
||||
name string `json:"name"`
|
||||
commit *PayloadCommit `json:"commit"`
|
||||
}
|
||||
|
||||
func (c *Client) ListRepoBranches(user, repo string) ([]*Branch, error) {
|
||||
branches := make([]*Branch, 0, 10)
|
||||
return branches, c.getParsedResponse("GET", fmt.Sprintf("/repos/%s/%s/branches", user, repo), nil, nil, &branches)
|
||||
}
|
||||
|
||||
func (c *Client) GetRepoBranch(user, repo, branch string) (*Branch, error) {
|
||||
b := new(Branch)
|
||||
return b, c.getParsedResponse("GET", fmt.Sprintf("/repos/%s/%s/branches/%s", user, repo, branch), nil, nil, &b)
|
||||
}
|
Loading…
Reference in a new issue