mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-05-04 13:29:13 -04:00
27 lines
614 B
TypeScript
27 lines
614 B
TypeScript
import { Alarm } from '@vicons/tabler';
|
|
import { defineTool } from '../tool';
|
|
import { translate } from '@/plugins/i18n.plugin';
|
|
|
|
export const tool = defineTool({
|
|
name: translate('tools.crontab-generator.title'),
|
|
path: '/crontab-generator',
|
|
description: translate('tools.crontab-generator.description'),
|
|
keywords: [
|
|
'crontab',
|
|
'generator',
|
|
'cronjob',
|
|
'cron',
|
|
'schedule',
|
|
'parse',
|
|
'expression',
|
|
'year',
|
|
'month',
|
|
'week',
|
|
'day',
|
|
'minute',
|
|
'second',
|
|
],
|
|
component: () => import('./crontab-generator.vue'),
|
|
icon: Alarm,
|
|
npmPackages: ['cronstrue'],
|
|
});
|