(ctx context.Context, chatID uuid.UUID, req codersdk.UpdateChatRequest)
| 48 | } |
| 49 | |
| 50 | func (c *sdkChatClient) UpdateChat(ctx context.Context, chatID uuid.UUID, req codersdk.UpdateChatRequest) error { |
| 51 | return c.client.UpdateChat(ctx, chatID, req) |
| 52 | } |
| 53 | |
| 54 | var _ chatClient = (*sdkChatClient)(nil) |
nothing calls this directly
no test coverage detected