Advertisement
FFGFlash

pong

Jan 29th, 2021
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. const Descriptor = {
  2.     description: "This is an example command."
  3. };
  4.  
  5. async function execute(msg) {
  6.     return msg.reply("Pong!");
  7. }
  8.  
  9. module.exports = {
  10.     descriptor: Descriptor,
  11.     execute: execute
  12. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement