feat: add Crontab Guru tool for parsing and validating crontab expressions

This commit is contained in:
AshAnand34
2025-07-07 21:27:32 -07:00
parent 816a098971
commit fe41c092f6
9 changed files with 196 additions and 2 deletions

View File

@@ -1,3 +1,4 @@
import { tool as timeCrontabGuru } from './crontab-guru/meta';
import { tool as timeBetweenDates } from './time-between-dates/meta';
import { tool as daysDoHours } from './convert-days-to-hours/meta';
import { tool as hoursToDays } from './convert-hours-to-days/meta';
@@ -11,5 +12,6 @@ export const timeTools = [
convertSecondsToTime,
convertTimetoSeconds,
truncateClockTime,
timeBetweenDates
timeBetweenDates,
timeCrontabGuru
];