it-tools/src/tools/crontab-generator/index.ts
2022-06-02 00:11:49 +02:00

25 lines
554 B
TypeScript

import { Alarm } from '@vicons/tabler';
import { defineTool } from '../tool';
export const tool = defineTool({
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,
});