mirror of
https://github.com/sqlchat/sqlchat.git
synced 2025-07-28 01:32:09 +08:00
6 lines
96 B
TypeScript
6 lines
96 B
TypeScript
import { v4 as uuidv4 } from "uuid";
|
|
|
|
export const generateUUID = () => {
|
|
return uuidv4();
|
|
};
|