19 lines
437 B
Plaintext
19 lines
437 B
Plaintext
const Embed = require("../functions/embed")
|
|
|
|
module.exports = {
|
|
config: {
|
|
name: "",
|
|
usage: true,
|
|
cooldown: 5000,
|
|
available: true,
|
|
permissions: [],
|
|
aliases: []
|
|
},
|
|
run: async (client, message, args, db) => {
|
|
|
|
new Paginator([], { timeout: 5 * 2e4, user: message.authorId, client: client })
|
|
.add([embed, embed2])
|
|
.start(message.channel);
|
|
},
|
|
};
|
|
|