From 83dcca0a0279ce6415a3e9d153c13d91284369b0 Mon Sep 17 00:00:00 2001 From: Andrew Lee Date: Sat, 14 Oct 2023 10:38:46 -0400 Subject: Removed tokens.json now using environment vars; Modified dockerfile --- commands/info.js | 2 -- 1 file changed, 2 deletions(-) (limited to 'commands') diff --git a/commands/info.js b/commands/info.js index 95eaebb..a74d73e 100644 --- a/commands/info.js +++ b/commands/info.js @@ -20,7 +20,6 @@ module.exports.run = async (client, message) => { const { MessageEmbed, version } = require('discord.js'); const os = require('os'); - const mongoose = require('mongoose'); const embed = new MessageEmbed() .setTitle('Information on AleeBot\'s Host') .addField('OS Hostname: ', os.hostname(), true) @@ -28,7 +27,6 @@ module.exports.run = async (client, message) => { .addField('Discord.JS Version: ', version, true) .addField('OS Platform: ', os.platform(), true) .addField('OS Version: ', os.release(), true) - .addField('Mongoose Version:', mongoose.version, true) .setColor('#1fd619'); await message.channel.send({ embeds: [embed] }); }; -- cgit v1.2.3