Client is a grpc client
| 11 | |
| 12 | // Client is a grpc client |
| 13 | type Client struct { |
| 14 | Addr string // db server address |
| 15 | } |
| 16 | |
| 17 | // newGrpcClient returns a grpc client |
| 18 | func newGrpcClient(addr string) (gstring.GStringServiceClient, error) { |
nothing calls this directly
no outgoing calls
no test coverage detected