const client = require("../index") module.exports = [ { name: "ping", run: (ctx, args) => { console.log(ctx, args) ctx.reply(`Pong! ${args}`) } } ]