From 02ae9b0396877ec2aafa2d1a1b26e2650fdf8bcf Mon Sep 17 00:00:00 2001 From: AlecM33 Date: Tue, 13 Dec 2022 20:46:03 -0500 Subject: [PATCH] remove unused import --- server/modules/ServerBootstrapper.js | 1 - 1 file changed, 1 deletion(-) diff --git a/server/modules/ServerBootstrapper.js b/server/modules/ServerBootstrapper.js index e42da5b..fa111c5 100644 --- a/server/modules/ServerBootstrapper.js +++ b/server/modules/ServerBootstrapper.js @@ -6,7 +6,6 @@ const fs = require('fs'); const crypto = require('crypto'); const SocketManager = require('./SocketManager.js'); const GameManager = require('./GameManager.js'); -const globals = require('../config/globals.js'); const { ENVIRONMENT } = require('../config/globals.js'); const rateLimit = require('express-rate-limit').default;