Bu içerik henüz dilinizde mevcut değil.
1import { commandModule, CommandType } from "@sern/handler";2 3export default commandModule({4 type: CommandType.Both,5 plugins: [],6 description: "A ping command",7 execute: async (ctx, sdt) => {8 await ctx.reply("Pong 🏓");9 },10});