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'),
|
|
});
|