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