truncate tool and testCases; then autoupdated index file

This commit is contained in:
Chesterkxng
2024-07-01 16:10:53 +00:00
parent 9db2d108b6
commit 2a5240724d
5 changed files with 240 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
import { defineTool } from '@tools/defineTool';
import { lazy } from 'react';
// import image from '@assets/text.png';
export const tool = defineTool('list', {
name: 'Truncate',
path: 'truncate',
// image,
description: '',
shortDescription: '',
keywords: ['truncate'],
component: lazy(() => import('./index'))
});