aboutsummaryrefslogtreecommitdiff
path: root/src/tools/yaml-to-toml/index.ts
blob: d788887e7f2b9880e22fc381fb5a04dca32a6bfe (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
import { AlignJustified } from '@vicons/tabler';
import { defineTool } from '../tool';
import { translate } from '@/plugins/i18n.plugin';

export const tool = defineTool({
  name: translate('tools.yaml-to-toml.title'),
  path: '/yaml-to-toml',
  description: translate('tools.yaml-to-toml.description'),
  keywords: ['yaml', 'to', 'toml', 'convert', 'transform'],
  component: () => import('./yaml-to-toml.vue'),
  icon: AlignJustified,
  createdAt: new Date('2023-06-23'),
});