diff options
Diffstat (limited to 'src/tools/crontab-generator/index.ts')
-rw-r--r-- | src/tools/crontab-generator/index.ts | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/tools/crontab-generator/index.ts b/src/tools/crontab-generator/index.ts new file mode 100644 index 0000000..5628625 --- /dev/null +++ b/src/tools/crontab-generator/index.ts @@ -0,0 +1,11 @@ +import { Alarm } from '@vicons/tabler'; +import type { ITool } from './../Tool'; + +export const tool: ITool = { + name: 'Crontab generator', + path: '/crontab-generator', + description: 'Validate and generate crontab and get the human readable description of the cron schedule.', + keywords: ['crontab', 'generator', 'cronjob', 'cron', 'schedule', 'parse', 'expression', 'year', 'month', 'week', 'day', 'minute', 'second'], + component: () => import('./crontab-generator.vue'), + icon: Alarm, +}; |