Zonies-Bot/commands/template.txt
2025-05-12 12:57:59 -05:00

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);
},
};