mirror of
https://github.com/iib0011/omni-tools.git
synced 2025-09-22 23:49:31 +02:00
19 lines
658 B
TypeScript
19 lines
658 B
TypeScript
import { defineTool } from '@tools/defineTool';
|
|
import { lazy } from 'react';
|
|
|
|
export const tool = defineTool('time', {
|
|
name: 'Crontab Guru',
|
|
path: 'crontab-guru',
|
|
icon: 'material-symbols:schedule',
|
|
description:
|
|
'Generate and understand cron expressions. Create cron schedules for automated tasks and system jobs.',
|
|
shortDescription: 'Generate and understand cron expressions',
|
|
keywords: ['cron', 'schedule', 'automation', 'expression'],
|
|
component: lazy(() => import('./index')),
|
|
i18n: {
|
|
name: 'time.crontabGuru.name',
|
|
description: 'time.crontabGuru.description',
|
|
shortDescription: 'time.crontabGuru.shortDescription'
|
|
}
|
|
});
|