From c5bd94131dfb20b2c69b7eeb96f3ad89d6de43f4 Mon Sep 17 00:00:00 2001 From: Jacob Nguyen <76754747+jacoobes@users.noreply.github.com> Date: Sun, 14 Aug 2022 12:54:28 -0500 Subject: [PATCH] feat: fix duplicate --- README.md | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/README.md b/README.md index fbec6b5..b513d1e 100644 --- a/README.md +++ b/README.md @@ -81,16 +81,6 @@ exports.default = commandModule({ ctx.reply('pong!'); } }); - -const { Sern, CommandType } = require('@sern/handler'); - -exports.default = commandModule({ - description: 'A ping pong command', - type: CommandType.Slash, - execute(ctx) { - ctx.reply('pong!'); - } - }); ``` See our [templates](https://github.com/sern-handler/templates) for TypeScript examples and more