diff --git a/src/events/cron/test.ts b/src/events/cron/test.ts new file mode 100644 index 0000000..84db73d --- /dev/null +++ b/src/events/cron/test.ts @@ -0,0 +1,18 @@ +import { Cron } from "../../interfaces"; + +export = { + time: { + seconds: 0, + minutes: 0, + hours: 12, + dayOfMonth: 10, + month: 5, + dayOfWeek: 5 + }, + execute: () => { + console.log("Test cron executed!") + }, + onComplete: null, + start: true, + timeZone: "Europe/Zagreb" +} as Cron \ No newline at end of file