ConjureBot/src/commands/echolog.ts
2020-03-08 17:47:58 -04:00

13 lines
262 B
TypeScript

import {Command} from "../Command";
const echolog = new Command(
'echolog',
(message, args) => {
console.log("Echolog:");
for (const arg of args)
console.log(arg);
},
{
description: "Echo's the arguments on the console"
});
export default echolog;