import {Command, NamedCommand} from "../../core"; export default new NamedCommand({ description: "Repeats your message.", usage: "", run: "Please provide a message for me to say!", any: new Command({ description: "Message to repeat.", async run({message, channel, guild, author, member, client, args}) { channel.send(`*${author} says:*\n${args.join(" ")}`); } }) });