(chatId: string)
| 176 | }; |
| 177 | |
| 178 | export const watchChatGit = (chatId: string): WebSocket => { |
| 179 | return createWebSocket(`/api/experimental/chats/${chatId}/stream/git`); |
| 180 | }; |
| 181 | |
| 182 | export const watchChatDesktop = (chatId: string): WebSocket => { |
| 183 | const socket = createWebSocket( |
no test coverage detected