summaryrefslogtreecommitdiff
path: root/commands
diff options
context:
space:
mode:
authorAndrew Lee <alee14498@protonmail.com>2023-10-14 10:38:46 -0400
committerAndrew Lee <alee14498@protonmail.com>2023-10-14 10:38:46 -0400
commit83dcca0a0279ce6415a3e9d153c13d91284369b0 (patch)
treeebbe2324f59e6a68c76ba8005710893278fce116 /commands
parent2aaca5141ce7ba104fde3a91c2fc5f33047bec2f (diff)
downloadAleeBot-83dcca0a0279ce6415a3e9d153c13d91284369b0.tar.gz
AleeBot-83dcca0a0279ce6415a3e9d153c13d91284369b0.tar.bz2
AleeBot-83dcca0a0279ce6415a3e9d153c13d91284369b0.zip
Removed tokens.json now using environment vars; Modified dockerfile
Diffstat (limited to 'commands')
-rw-r--r--commands/info.js2
1 files changed, 0 insertions, 2 deletions
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] });
};