asdqwex/discobot

View on GitHub
src/modules/ping.js

Summary

Maintainability
A
45 mins
Test Coverage
'use strict'

module.exports = {
  names: ['ping'],
  onMessage: function (bot, user, userID, channelID, message, rawEvent) {
    bot.sendMessage({
      to: channelID,
      message: 'pong, mother fucker'
    })
  }
}