ghorg/vendor/github.com/ktrysmt/go-bitbucket/users.go
2020-07-11 09:54:34 -07:00

35 lines
844 B
Go

package bitbucket
type Users struct {
c *Client
}
func (u *Users) Get(t string) (interface{}, error) {
urlStr := u.c.GetApiBaseURL() + "/users/" + t + "/"
return u.c.execute("GET", urlStr, "")
}
func (c *Client) Get(t string) (interface{}, error) {
urlStr := c.GetApiBaseURL() + "/users/" + t + "/"
return c.execute("GET", urlStr, "")
}
func (u *Users) Followers(t string) (interface{}, error) {
urlStr := u.c.GetApiBaseURL() + "/users/" + t + "/followers"
return u.c.execute("GET", urlStr, "")
}
func (u *Users) Following(t string) (interface{}, error) {
urlStr := u.c.GetApiBaseURL() + "/users/" + t + "/following"
return u.c.execute("GET", urlStr, "")
}
func (u *Users) Repositories(t string) (interface{}, error) {
urlStr := u.c.GetApiBaseURL() + "/users/" + t + "/repositories"
return u.c.execute("GET", urlStr, "")
}