Test servers
const { CommandType } = require("wokcommands");
module.exports = {
description: "Ping pong command",
type: CommandType.BOTH,
testOnly: true,
callback: () => {
return {
content: "Pong!",
};
},
};const { CommandType } = require("wokcommands");
module.exports = {
description: "Ping pong command",
type: CommandType.BOTH,
testOnly: true,
callback: () => {
return {
content: "Pong!",
};
},
};Last updated