mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-05-04 05:19:12 -04:00
12 lines
343 B
TypeScript
12 lines
343 B
TypeScript
import { IconBraces } from '@tabler/icons-vue';
|
|
import { defineTool } from '../tool';
|
|
|
|
export const tool = defineTool({
|
|
name: 'JSON to XML',
|
|
path: '/json-to-xml',
|
|
description: 'Convert JSON to XML',
|
|
keywords: ['json', 'xml'],
|
|
component: () => import('./json-to-xml.vue'),
|
|
icon: IconBraces,
|
|
createdAt: new Date('2024-08-09'),
|
|
});
|