import {Command} from "../Command"; const echo = new Command( 'echo', (message, args) => { message.channel.send(args.join(' ')); }, { description: "Echo's the arguments as a message" } ); export default echo;