mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-04-26 17:56:13 -04:00
25 lines
554 B
TypeScript
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,
|
|
});
|