xyter/src/jobs/shop/index.ts
2022-06-11 21:59:47 +02:00

12 lines
263 B
TypeScript

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