Files
create-bot/template-ts/src/commands/ping.ts
2023-06-09 00:16:12 -05: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 🏓');
},
});