Files
femboybot/commands/ping.ts
2022-11-18 18:09:06 +01:00

12 lines
251 B
TypeScript

import { commandModule, CommandType } from '@sern/handler';
export default commandModule({
type: CommandType.Both,
plugins: [],
description: 'A ping command',
//alias : [],
execute: async (ctx, args) => {
await ctx.reply('Pong 🏓');
},
});