Spot/event/bot/message.js
2021-05-02 20:00:36 -04:00

12 lines
232 B
JavaScript

const Command = require('../../model/command');
/**
* @param {Message} message
*/
module.exports = async (message) => {
const user = message.author;
if (!user.bot) {
await Command.parseMessage(message);
}
};