lyfe1 / plugins /ping.js
Ayanokojix23's picture
hello world
bb69f9b
const { bot } = require('../lib/')
bot(
{
pattern: 'ping ?(.*)',
desc: 'To check ping',
type: 'misc',
},
async (message, match) => {
const start = new Date().getTime()
await message.send('```Ping!```')
const end = new Date().getTime()
return await message.send('*Pong!*\n ```' + (end - start) + '``` *ms*')
}
)