mirror of
https://github.com/OneUptime/oneuptime.git
synced 2026-04-06 08:42:13 +02:00
12 lines
601 B
TypeScript
12 lines
601 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 * * * *";
|
|
export const EVERY_FIVE_SECONDS: string = "*/5 * * * * *";
|
|
export const EVERY_WEEK: string = "0 0 * * 0";
|
|
export const EVERY_FIFTEEN_MINUTE: string = "*/15 * * * *";
|
|
export const EVERY_THIRTY_SECONDS: string = "*/30 * * * * *";
|
|
export const EVERY_THIRTY_MINUTES: string = "*/30 * * * *";
|
|
export const EVERY_THREE_HOURS: string = "0 */3 * * *";
|
|
export const EVERY_TEN_SECONDS: string = "*/10 * * * * *";
|