Minty U

temp

exports.run = async (client, msg, args, prefix) => {
msg.channel.send(`${client.user.username}의 핑은 ${client.ws.ping}ms 입니다!`);
};
exports.config = {
name: '핑',
aliases: ['vld', 'ping'],
category: ['ocr'],
des: ['봇의 디스코드 웹소켓 지연시간을 알려드립니다'],
use: ['!핑']
};
\ No newline at end of file
......
......@@ -11,7 +11,7 @@ client.once('ready', () => {
client.commands = new Discord.Collection();
client.aliases = new Discord.Collection();
client.category = ['example', 'stationery', 'translate', 'tts'];
client.category = ['example', 'stationery', 'translate', 'tts', 'ocr'];
fs.readdirSync("./Commands/").forEach(dir => {
const Filter = fs.readdirSync(`./Commands/${dir}`).filter(f => f.endsWith(".js"));
......