From bd4b0f9736147b1474626360e9df159495ac4907 Mon Sep 17 00:00:00 2001 From: Daniel Lugo Date: Mon, 13 Sep 2021 09:40:11 -0400 Subject: [PATCH] Correct uuid import --- utils/GunSmith/GunSmith.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utils/GunSmith/GunSmith.js b/utils/GunSmith/GunSmith.js index 27fe728c..a1cc7572 100644 --- a/utils/GunSmith/GunSmith.js +++ b/utils/GunSmith/GunSmith.js @@ -6,7 +6,7 @@ // @ts-check /// /// -const uuid = require('uuid').v1 +const uuid = require('uuid/v1') const { fork } = require('child_process') const logger = require('../../config/log')