Skip to content

Instantly share code, notes, and snippets.

@AllGistsEqual
Created January 25, 2021 21:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save AllGistsEqual/37710ee875d0556e42974d5cc0756705 to your computer and use it in GitHub Desktop.
Save AllGistsEqual/37710ee875d0556e42974d5cc0756705 to your computer and use it in GitHub Desktop.
// File: src/commands/ping.js
module.exports = {
name: 'ping',
description: 'Ping! Pong?',
execute(message) {
const delay = Date.now() - message.createdAt
message.reply(`**pong** *(delay: ${delay}ms)*`)
},
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment