(ctx context.Context, chatID uuid.UUID, opts *codersdk.StreamChatOptions)
| 40 | } |
| 41 | |
| 42 | func (c *sdkChatClient) StreamChat(ctx context.Context, chatID uuid.UUID, opts *codersdk.StreamChatOptions) (<-chan codersdk.ChatStreamEvent, io.Closer, error) { |
| 43 | return c.client.StreamChat(ctx, chatID, opts) |
| 44 | } |
| 45 | |
| 46 | func (c *sdkChatClient) CreateChatMessage(ctx context.Context, chatID uuid.UUID, req codersdk.CreateChatMessageRequest) (codersdk.CreateChatMessageResponse, error) { |
| 47 | return c.client.CreateChatMessage(ctx, chatID, req) |
nothing calls this directly
no test coverage detected