removing useless import

This commit is contained in:
2023-06-11 21:40:03 +02:00
parent 54938bcd30
commit ce5f0e69a4

View File

@@ -6,7 +6,6 @@ const mongoURI = process.env.MONGOURI;
const { connect } = require('mongoose'); const { connect } = require('mongoose');
const path = require('path'); const path = require('path');
const fs = require('fs'); const fs = require('fs');
const { parseArgs } = require('util');
const client = new Client({ const client = new Client({
intents: [ intents: [
@@ -240,4 +239,4 @@ client.login(token);
connect(mongoURI, {}).then(() => { connect(mongoURI, {}).then(() => {
console.log('Connected to MongoDB'); console.log('Connected to MongoDB');
}) })