mirror of
https://github.com/OneUptime/oneuptime
synced 2024-11-23 07:42:10 +00:00
8 lines
138 B
TypeScript
8 lines
138 B
TypeScript
|
import { v1 as uuidv1 } from 'uuid';
|
||
|
|
||
|
export default class UUID {
|
||
|
public static generate(): string {
|
||
|
return uuidv1();
|
||
|
}
|
||
|
}
|