aboutsummaryrefslogtreecommitdiff
path: root/src/tools/crontab-generator/index.ts
blob: 49b2838906420d2d1ab3b6383f0691c7c51bc392 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
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,
});