Files
omni-tools/src/pages/tools/time/crontab-guru/meta.ts
2025-07-12 23:02:35 -07:00

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'
}
});