support go modules (#48)

* support go modules
- use Go 1.11 (with and without module support) in CI
- add go.mod and go.sum files
- with modules in Go 1.11, can't rely on GOPATH directory layout, so just copy test.proto into this repo
This commit is contained in:
Joshua Humphries
2018-09-14 20:18:53 -04:00
committed by GitHub
parent 6198551381
commit d4d048fade
5 changed files with 202 additions and 1 deletions

8
go.mod Normal file
View File

@@ -0,0 +1,8 @@
module github.com/fullstorydev/grpcurl
require (
github.com/golang/protobuf v1.1.0
github.com/jhump/protoreflect v1.0.0
golang.org/x/net v0.0.0-20180530234432-1e491301e022
google.golang.org/grpc v1.12.0
)