2025-03-19 00:02:25 +05:30
|
|
|
import { defineTool } from '@tools/defineTool';
|
|
|
|
|
import { lazy } from 'react';
|
|
|
|
|
|
|
|
|
|
export const tool = defineTool('csv', {
|
2025-07-14 13:55:01 +01:00
|
|
|
i18n: {
|
|
|
|
|
name: 'csv:csvToXml.title',
|
|
|
|
|
description: 'csv:csvToXml.description',
|
|
|
|
|
shortDescription: 'csv:csvToXml.shortDescription'
|
|
|
|
|
},
|
2025-07-14 18:04:30 +01:00
|
|
|
|
2025-03-19 00:02:25 +05:30
|
|
|
path: 'csv-to-xml',
|
2025-03-18 19:20:54 +00:00
|
|
|
icon: 'mdi-light:xml',
|
2025-07-14 18:04:30 +01:00
|
|
|
|
2025-03-19 00:02:25 +05:30
|
|
|
keywords: ['csv', 'xml', 'convert', 'transform', 'parse'],
|
2025-07-12 11:02:15 -07:00
|
|
|
userTypes: ['Developers'],
|
2025-03-19 00:02:25 +05:30
|
|
|
component: lazy(() => import('./index'))
|
|
|
|
|
});
|