LinkUp-P2P-Chat/chatBot/commands/ping.js

7 lines
117 B
JavaScript
Raw Normal View History

2024-06-04 01:19:56 -04:00
// ping.js
export default {
handler: function(bot, args, message) {
bot.sendTextMessage('Pong!');
2024-06-04 01:19:56 -04:00
}
};