mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-05-05 13:57:10 -04:00
13 lines
390 B
TypeScript
13 lines
390 B
TypeScript
![]() |
import { Code } from '@vicons/tabler';
|
||
|
import { defineTool } from '../tool';
|
||
|
|
||
|
export const tool = defineTool({
|
||
|
name: 'XML formatter',
|
||
|
path: '/xml-formatter',
|
||
|
description: 'Prettify your XML string to a human friendly readable format.',
|
||
|
keywords: ['xml', 'prettify', 'format'],
|
||
|
component: () => import('./xml-formatter.vue'),
|
||
|
icon: Code,
|
||
|
createdAt: new Date('2023-06-17'),
|
||
|
});
|