mirror of
https://github.com/OneUptime/oneuptime.git
synced 2026-04-06 08:42:13 +02:00
8 lines
130 B
TypeScript
8 lines
130 B
TypeScript
import { v4 as uuidv4 } from "uuid";
|
|
|
|
export default class UUID {
|
|
public static generate(): string {
|
|
return uuidv4();
|
|
}
|
|
}
|