You've already forked mpbot-github
mirror of
https://github.com/macports/mpbot-github.git
synced 2026-03-31 14:46:03 -07:00
9 lines
239 B
Go
9 lines
239 B
Go
package githubapi
|
|
|
|
import "github.com/google/go-github/github"
|
|
|
|
func (client *githubClient) ListOrgMembers(org string) ([]*github.User, error) {
|
|
users, _, err := client.Organizations.ListMembers(client.ctx, org, nil)
|
|
return users, err
|
|
}
|