Removing unneccesarry files and dep.

This commit is contained in:
2023-06-13 12:42:18 +02:00
2 changed files with 10 additions and 4 deletions

View File

@@ -4,6 +4,3 @@ DEV=
CLIENTID=
GUILDID=
HYPIXELAPIKEY=
GUILDINFO=
REQUIREMENTS=
RULESINFO=

View File

@@ -7,7 +7,10 @@ const mongoURI = process.env.MONGOURI;
const {connect} = require('mongoose');
const path = require('path');
const fs = require('fs');
<<<<<<< HEAD
const {parseArgs} = require('util');
=======
>>>>>>> ce5f0e69a420358f6ba11e9ad1dfa82c25e5ca90
const client = new Client({
intents : [
@@ -228,4 +231,10 @@ client.on(Events.ClientReady, () => {
client.on(Events.ClientReady, () => { client.user.setStatus('dnd'); });
client.login(token);
<<<<<<< HEAD
connect(mongoURI, {}).then(() => { console.log('Connected to MongoDB'); })
=======
connect(mongoURI, {}).then(() => {
console.log('Connected to MongoDB');
})
>>>>>>> ce5f0e69a420358f6ba11e9ad1dfa82c25e5ca90