fix(ts): ctx.reply to string only (#10)

This commit is contained in:
Jacob Nguyen
2022-07-05 22:17:33 -05:00
committed by GitHub
parent cbfb455407
commit 848d607b60

View File

@@ -6,6 +6,6 @@ export default commandModule({
description: 'A ping command',
//alias : [],
execute: async (ctx, args) => {
await ctx.reply({ content: 'Pong 🏓' });
await ctx.reply('Pong 🏓');
},
});