build/gerrit/example_test.go

22 строки
453 B
Go

// Copyright 2017 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package gerrit_test
import (
"context"
"fmt"
"golang.org/x/build/gerrit"
)
func Example() {
c := gerrit.NewClient("https://go-review.googlesource.com", gerrit.NoAuth)
info, err := c.GetProjectInfo(context.TODO(), "go")
if err != nil {
panic(err)
}
fmt.Println(info.Description)
}