xyter/src/schedules/shop/index.ts
2022-10-21 20:14:14 +02:00

12 lines
279 B
TypeScript

// Dependencies
import { Client } from "discord.js";
import { execute as RolesExecute } from "./modules/roles";
export const options = {
schedule: "*/5 * * * *", // https://crontab.guru/
};
export const execute = async (client: Client) => {
await RolesExecute(client);
};