From 713140e3c2a9d8d1bd8b2eb43da33ba4a4c69c84 Mon Sep 17 00:00:00 2001 From: Taken Date: Fri, 2 Jun 2023 20:50:33 +0200 Subject: [PATCH 1/2] Reemoved unused env vars --- .env.example | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/.env.example b/.env.example index c00f5b8..401271a 100644 --- a/.env.example +++ b/.env.example @@ -3,7 +3,4 @@ MONGOURI= DEV= CLIENTID= GUILDID= -HYPIXELAPIKEY= -GUILDINFO= -REQUIREMENTS= -RULESINFO= \ No newline at end of file +HYPIXELAPIKEY= \ No newline at end of file From ce5f0e69a420358f6ba11e9ad1dfa82c25e5ca90 Mon Sep 17 00:00:00 2001 From: Taken Date: Sun, 11 Jun 2023 21:40:03 +0200 Subject: [PATCH 2/2] removing useless import --- index.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/index.js b/index.js index 4ba6057..977a21a 100644 --- a/index.js +++ b/index.js @@ -6,7 +6,6 @@ const mongoURI = process.env.MONGOURI; const { connect } = require('mongoose'); const path = require('path'); const fs = require('fs'); -const { parseArgs } = require('util'); const client = new Client({ intents: [ @@ -240,4 +239,4 @@ client.login(token); connect(mongoURI, {}).then(() => { console.log('Connected to MongoDB'); -}) \ No newline at end of file +})