LinkUp-P2P-Chat/chatBot/commands/ping.js
2024-06-04 01:19:56 -04:00

7 lines
115 B
JavaScript

// ping.js
export default {
handler: function(bot, args, message) {
bot.sendMessage('Pong!');
}
};