mirror of
https://github.com/ChomeNS/chomens-bot-mc.git
synced 2024-11-14 10:44:55 -05:00
19 lines
564 B
JavaScript
19 lines
564 B
JavaScript
const fs = require('fs/promises');
|
|
const util = require('util');
|
|
const path = require('path');
|
|
|
|
async function loadPlugins(bot, dcclient, config) {
|
|
const plugins = await fs.readdir(path.join(__dirname, '..', 'plugins'));
|
|
|
|
plugins.forEach((plugin) => {
|
|
try {
|
|
const plug = require(path.join(__dirname, '..', 'plugins', plugin));
|
|
plug.inject(bot, dcclient, config);
|
|
} catch (e) {
|
|
console.log(`Plugin ${plugin} is having exception loading the plugin:`);
|
|
console.log(util.inspect(e));
|
|
}
|
|
});
|
|
};
|
|
|
|
module.exports = {loadPlugins};
|