go-github对 Github 开放 API 进行 Go 语言封装
go-github 是 Google 对 Github 的开放 API 进行 Go 语言封装的一个项目。
示例代码:
import "github.com/google/go-github/github" client := github.NewClient(nil) orgs, _, err := client.Organizations.List("willnorris", nil) opt := &github.RepositoryListByOrgOptions{Sort: "updated"} repos, _, err := client.Repositories.ListByOrg("github", opt)
评论