2025-03-31 18:08:22 +00:00
|
|
|
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:swapCsvColumns.title',
|
|
|
|
|
description: 'csv:swapCsvColumns.description',
|
|
|
|
|
shortDescription: 'csv:swapCsvColumns.shortDescription',
|
2025-07-18 15:03:26 -07:00
|
|
|
longDescription: 'csv:swapCsvColumns.longDescription',
|
2025-07-21 22:55:47 -07:00
|
|
|
userTypes: ['General Users', 'Developers']
|
2025-07-14 13:55:01 +01:00
|
|
|
},
|
2025-07-14 18:04:30 +01:00
|
|
|
|
2025-03-31 18:08:22 +00:00
|
|
|
path: 'swap-csv-columns',
|
|
|
|
|
icon: 'eva:swap-outline',
|
|
|
|
|
keywords: ['csv', 'swap', 'columns'],
|
|
|
|
|
component: lazy(() => import('./index'))
|
|
|
|
|
});
|