Merge pull request #15 from sapk/master

Add branch representation and API calls
This commit is contained in:
Unknwon 2016-02-02 16:52:06 -05:00
commit 01d5b5ee82

20
repo_branches.go Normal file
View file

@ -0,0 +1,20 @@
package gogs
import (
"fmt"
)
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)
}