This commit is contained in:
derpystuff 2022-06-19 14:14:34 +02:00
parent e2146f5716
commit 6484c69851
4 changed files with 8 additions and 27 deletions

View file

@ -19,7 +19,7 @@ const cluster = new ClusterClient("", {
});
// Create this clusters paginator
const paginator = new Paginator(cluster, {
module.exports.paginator = new Paginator(cluster, {
maxTime: 300000,
pageLoop: true,
pageNumber: true
@ -46,8 +46,4 @@ if(process.env.PREFIX_OVERRIDE) commandPrefix = process.env.PREFIX_OVERRIDE;
await interactionClient.addMultipleIn('../commands/interaction/');
await interactionClient.run();
})();
module.exports = {
paginator
}
})();