mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-04-27 10:06:16 -04:00
12 lines
494 B
TypeScript
12 lines
494 B
TypeScript
![]() |
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,
|
||
|
};
|