4 lines
97 B
TypeScript
4 lines
97 B
TypeScript
export const generateConversationId = () => {
|
|
return `jan-${(Date.now() / 1000).toFixed(0)}`
|
|
}
|