mirror of
https://github.com/DarthKilroy/Spot.git
synced 2025-12-19 18:26:48 +00:00
13 lines
232 B
JavaScript
13 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);
|
||
|
|
}
|
||
|
|
};
|