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

12 lines
494 B
TypeScript
Raw Normal View History

2022-04-14 02:02:05 +02:00
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,
};