()
| 23 | } |
| 24 | |
| 25 | export function getCurrentChatId() { |
| 26 | if (!currentChatId) { |
| 27 | currentChatId = new Date().toISOString().replace(/:/g, '-') |
| 28 | } |
| 29 | return currentChatId |
| 30 | } |
| 31 | |
| 32 | export function setCurrentChatId(chatId: string) { |
| 33 | currentChatId = chatId |
no outgoing calls
no test coverage detected