echo.ts (186B)
1 2 3 4 5 6 7
export default (homescope: HomeScope) => { const { message, args } = homescope; const reply = args.join(' ').trim(); if (reply.length === 0) return; message.channel.send(reply); };