Last active
February 13, 2026 04:24
-
-
Save reactmore/0e55581de5793279d2dc1020ca444996 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| const { botHandler } = require("../../handler"); | |
| botHandler({ | |
| name: "PingProBot", | |
| BOT_TOKEN, | |
| commandsPath: __dirname | |
| }); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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