Create repo_branches.go

This commit is contained in:
Antoine GIRARD 2016-01-14 16:21:47 +01:00
parent 2f4342d6de
commit 10296af427

16
repo_branches.go Normal file
View 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)
}