it-tools/src/tools/crontab-generator/index.ts

26 lines
554 B
TypeScript
Raw Normal View History

2022-04-14 02:02:05 +02:00
import { Alarm } from '@vicons/tabler';
import { defineTool } from '../tool';
2022-04-14 02:02:05 +02:00
export const tool = defineTool({
2022-04-14 02:02:05 +02:00
name: 'Crontab generator',
path: '/crontab-generator',
description: 'Validate and generate crontab and get the human readable description of the cron schedule.',
2022-04-22 23:31:40 +02:00
keywords: [
'crontab',
'generator',
'cronjob',
'cron',
'schedule',
'parse',
'expression',
'year',
'month',
'week',
'day',
'minute',
'second',
],
2022-04-14 02:02:05 +02:00
component: () => import('./crontab-generator.vue'),
icon: Alarm,
});