Name | Date | Size | #Lines | LOC | ||
---|---|---|---|---|---|---|
.. | 03-May-2022 | - | ||||
v2/ | H | 13-May-2019 | - | |||
.gitignore | H A D | 13-Nov-2018 | 8 | 2 | 1 | |
.travis.yml | H A D | 13-Nov-2018 | 218 | 13 | 12 | |
CODE_OF_CONDUCT.md | H A D | 13-Nov-2018 | 1.9 KiB | 44 | 35 | |
CONTRIBUTING.md | H A D | 13-Nov-2018 | 1.4 KiB | 28 | 24 | |
LICENSE | H A D | 13-Nov-2018 | 1.4 KiB | 28 | 25 | |
README.md | H A D | 13-Nov-2018 | 1.1 KiB | 30 | 22 | |
call_option.go | H A D | 13-Nov-2018 | 4.8 KiB | 158 | 81 | |
call_option_test.go | H A D | 13-Nov-2018 | 3 KiB | 89 | 50 | |
gax.go | H A D | 13-Nov-2018 | 1.9 KiB | 39 | 2 | |
header.go | H A D | 13-Nov-2018 | 545 | 25 | 18 | |
header_test.go | H A D | 13-Nov-2018 | 395 | 20 | 17 | |
invoke.go | H A D | 13-Nov-2018 | 2.8 KiB | 90 | 48 | |
invoke_test.go | H A D | 13-Nov-2018 | 4.8 KiB | 156 | 104 |
README.md
1Google API Extensions for Go 2============================ 3 4[![Build Status](https://travis-ci.org/googleapis/gax-go.svg?branch=master)](https://travis-ci.org/googleapis/gax-go) 5[![Code Coverage](https://img.shields.io/codecov/c/github/googleapis/gax-go.svg)](https://codecov.io/github/googleapis/gax-go) 6[![GoDoc](https://godoc.org/github.com/googleapis/gax-go?status.svg)](https://godoc.org/github.com/googleapis/gax-go) 7 8Google API Extensions for Go (gax-go) is a set of modules which aids the 9development of APIs for clients and servers based on `gRPC` and Google API 10conventions. 11 12To install the API extensions, use: 13 14``` 15go get -u github.com/googleapis/gax-go 16``` 17 18**Note:** Application code will rarely need to use this library directly, 19but the code generated automatically from API definition files can use it 20to simplify code generation and to provide more convenient and idiomatic API surface. 21 22Go Versions 23=========== 24This library requires Go 1.6 or above. 25 26License 27======= 28BSD - please see [LICENSE](https://github.com/googleapis/gax-go/blob/master/LICENSE) 29for more information. 30