2025-03-18 09:55:57 +01:00

6 lines
122 B
JavaScript

export default (bot) => {
bot._cmd.set("PING", (msg) => {
bot.send(`PONG ${msg.params.join('')}`);
});
};