blob: da42c18d95feb4d68c3a7361914c45c336e10fd6 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
import { Braces } from '@vicons/tabler';
import { defineTool } from '../tool';
import { translate } from '@/plugins/i18n.plugin';
export const tool = defineTool({
name: translate('tools.json-to-toml.title'),
path: '/json-to-toml',
description: translate('tools.json-to-toml.description'),
keywords: ['json', 'parse', 'toml', 'convert', 'transform'],
component: () => import('./json-to-toml.vue'),
icon: Braces,
createdAt: new Date('2023-06-23'),
});
|