This commit is contained in:
Antoine GIRARD 2016-01-14 16:21:47 +01:00
Родитель 2f4342d6de
Коммит 10296af427
1 изменённых файлов: 16 добавлений и 0 удалений

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)
}