mancala/backend/src/util/key_factory.ts
2024-03-24 02:42:53 +03:00

6 lines
94 B
TypeScript

import { v4 as uuidv4 } from 'uuid';
export const generateKey = ()=>{
return uuidv4();
}