9 lines
205 B
JavaScript
9 lines
205 B
JavaScript
const bot = require("../../bot/bot");
|
|
|
|
const attachGuilds = (request, response, next) => {
|
|
response.locals.guilds = bot.guilds.cache.map(guild => guild);
|
|
next();
|
|
};
|
|
|
|
module.exports = attachGuilds;
|