mirror of
https://github.com/ChomeNS/chomens-bot-mc.git
synced 2024-11-30 10:56:55 -05:00
20 lines
389 B
JavaScript
20 lines
389 B
JavaScript
const fs = require('fs');
|
|
const path = require('path');
|
|
|
|
function loadPlugins(directory) {
|
|
const plugins = [];
|
|
|
|
for (const filename of fs.readdirSync(directory)) {
|
|
if (!filename.endsWith('.js')) continue;
|
|
|
|
const filepath = path.join(directory, filename);
|
|
|
|
const plugin = require(filepath);
|
|
|
|
plugins.push(plugin);
|
|
}
|
|
|
|
return plugins;
|
|
}
|
|
|
|
module.exports = loadPlugins;
|