chore: merge

This commit is contained in:
Ibrahima G. Coulibaly
2025-03-07 22:19:49 +00:00
parent ac98878349
commit 2dc78e7392
13 changed files with 29 additions and 27 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('string', {
name: 'Rot13',
path: 'rot13',
icon: 'hugeicons:encrypt',
description: '',
shortDescription: '',
keywords: ['rot13'],
component: lazy(() => import('./index'))
});