mirror of
https://github.com/OneUptime/oneuptime
synced 2024-11-22 15:24:55 +00:00
5 lines
198 B
TypeScript
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 * * * *';
|