mirror of
https://github.com/gfleury/go-bitbucket-v1.git
synced 2025-04-04 17:00:12 -05:00
Added GetProjectsResponse to unmarshall get projects response
This commit is contained in:
parent
412cc3323e
commit
c843caaa80
@ -533,6 +533,12 @@ func (k *SSHKey) String() string {
|
||||
return strings.Join(parts, " ")
|
||||
}
|
||||
|
||||
func GetProjectsResponse(r *APIResponse) ([]Project, error) {
|
||||
var m []Project
|
||||
err := mapstructure.Decode(r.Values["values"], &m)
|
||||
return m, err
|
||||
}
|
||||
|
||||
// GetCommitsResponse cast Commits into structure
|
||||
func GetCommitsResponse(r *APIResponse) ([]Commit, error) {
|
||||
var m []Commit
|
||||
|
Loading…
x
Reference in New Issue
Block a user