Files
scrypted/plugins/alexa/src/message.ts
2022-03-23 13:19:19 -07:00

5 lines
117 B
TypeScript

import crypto from 'crypto';
export function createMessageId() {
return crypto.randomBytes(8).toString('hex');
}