Skip to content

Instantly share code, notes, and snippets.

@reactmore
Last active February 13, 2026 04:24
Show Gist options
  • Select an option

  • Save reactmore/0e55581de5793279d2dc1020ca444996 to your computer and use it in GitHub Desktop.

Select an option

Save reactmore/0e55581de5793279d2dc1020ca444996 to your computer and use it in GitHub Desktop.
const { botHandler } = require("../../handler");
botHandler({
name: "PingProBot",
BOT_TOKEN,
commandsPath: __dirname
});
module.exports = {
pattern: "start",
description: "Start command",
callback: async (m) => {
await m.send("PingProBot running 🚀");
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment