mirror of
https://github.com/cheveguerra/bot-whatsapp.git
synced 2026-04-18 03:29:15 +00:00
8 lines
129 B
JavaScript
8 lines
129 B
JavaScript
const crypto = require('crypto')
|
|
|
|
const generateRef = () => {
|
|
return crypto.randomUUID()
|
|
}
|
|
|
|
module.exports = { generateRef }
|