From 1fb9bc2628ba2669b77708f7acf9d1ef49bbe1ac Mon Sep 17 00:00:00 2001 From: eirk Date: Fri, 6 Aug 2021 17:19:39 -0400 Subject: [PATCH] fix uuid --- src/class/Util.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/class/Util.ts b/src/class/Util.ts index 62352a5..6d63d4f 100644 --- a/src/class/Util.ts +++ b/src/class/Util.ts @@ -6,7 +6,7 @@ import { randomBytes } from 'crypto'; import childProcess from 'child_process'; import nodemailer from 'nodemailer'; import { Message, DMChannel, User, MessageEmbed, ColorResolvable, TextChannel } from 'discord.js'; -import uuid from 'uuid/v4'; +import { v4 as uuid } from 'uuid'; import moment from 'moment'; import fs from 'fs'; import hastebin from 'hastebin-gen';