我将 go 与 go-gihub 库一起使用,并设法从下面代码中显示的示例 repo 中列出了一些版本。下一步是使用 json 响应并观察新版本,但是响应中的类型不能被解组?
package main
import (
"context"
"fmt"
"github.com/google/go-github/github"
)
func main() {
fmt.Println("start")
client := github.NewClient(nil)
opt := &github.ListOptions{Page: 2, PerPage: 10}
ctx := context.Background()
rls, resp, err := client.Repositories.ListReleases(ctx, "prometheus-community", "helm-charts", opt)
if err != nil {
fmt.Println(err)
}
fmt.Println("contents of rls:", rls)
fmt.Println("contents of resp:", resp)
}
ITMISS
相关分类