oneuptime/Workers/Utils/CronTime.ts
Simon Larsen 051a36fa91
fix lint.
2023-01-02 11:34:11 +00:00

5 lines
198 B
TypeScript

export const EVERY_MINUTE: string = '* * * * *';
export const EVERY_DAY: string = '0 8 * * *';
export const EVERY_HOUR: string = '1 * * * *';
export const EVERY_FIVE_MINUTE: string = '*/5 * * * *';