(ctx context.Context)
| 594 | } |
| 595 | |
| 596 | func (c *Client) ensureConnected(ctx context.Context) error { |
| 597 | if c.client != nil { |
| 598 | return nil |
| 599 | } |
| 600 | return c.Start(ctx) |
| 601 | } |
| 602 | |
| 603 | // CreateSession creates a new conversation session with the Copilot CLI. |
| 604 | // |
no test coverage detected