go-sdk/repo_branches.go

17 lines
559 B
Go
Raw Normal View History

2016-01-14 15:21:47 +00:00
package gogs
type Branch struct {
2016-01-15 13:30:47 +00:00
Name string `json:"name"`
Commit *PayloadCommit `json:"commit"`
2016-01-14 15:21:47 +00:00
}
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)
}