working directory is not part of a module
client.go:9:2: cannot find module providing package google.golang.org/grpc: working directory is not part of a module
因为开启mod模式了
export GO111MODULE=auto
另外一种方法就是使用mod模式
export GO111MODULE=on
go mod init
go mod vendor
//缺少什么包,go get什么包