| 50 | } |
| 51 | |
| 52 | type Client struct { |
| 53 | GhPath string |
| 54 | RepoDir string |
| 55 | GitPath string |
| 56 | Stderr io.Writer |
| 57 | Stdin io.Reader |
| 58 | Stdout io.Writer |
| 59 | |
| 60 | commandContext commandCtx |
| 61 | mu sync.Mutex |
| 62 | } |
| 63 | |
| 64 | func (c *Client) Copy() *Client { |
| 65 | return &Client{ |
nothing calls this directly
no outgoing calls
no test coverage detected