| 46 | ) |
| 47 | |
| 48 | type client struct { |
| 49 | cmd *exec.Cmd |
| 50 | |
| 51 | target string |
| 52 | statsCC *grpc.ClientConn |
| 53 | } |
| 54 | |
| 55 | // newClient create a client with the given target and bootstrap content. |
| 56 | func newClient(target, binaryPath, bootstrap string, logger io.Writer, flags ...string) (*client, error) { |
nothing calls this directly
no outgoing calls
no test coverage detected