From ca68c4a017a9444e5327605b1f2dfdae79b59d9f Mon Sep 17 00:00:00 2001 From: baz Date: Mon, 27 Nov 2023 23:41:23 +0000 Subject: [PATCH] deploy-commands.js cleanup --- deploy-commands.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/deploy-commands.js b/deploy-commands.js index f1978e8..524de57 100644 --- a/deploy-commands.js +++ b/deploy-commands.js @@ -1,10 +1,10 @@ const { REST, Routes } = require('discord.js'); -const fs = require('node:fs'); -const path = require('node:path'); - const { config } = require('dotenv'); config(); +const fs = require('node:fs'); +const path = require('node:path'); + const commands = []; // Grab all the command files from the commands directory you created earlier const foldersPath = path.join(__dirname, 'commands');