woomy/src/commands/support.js

19 lines
439 B
JavaScript
Raw Permalink Normal View History

2020-01-25 10:02:43 +00:00
exports.run = async (client, message, args) =>{
message.channel.send("Use this link to join my support server: https://discord.gg/HCF8mdv")
};
exports.conf = {
enabled: true,
guildOnly: false,
aliases: [],
permLevel: "User",
requiredPerms: []
};
exports.help = {
name: "support",
2020-03-26 04:31:32 +00:00
category: "Utility",
2020-01-25 10:02:43 +00:00
description: "Sends a link to Woomy's support/development server.",
usage: "support"
};