diff options
Diffstat (limited to 'src/tools/encryption/index.ts')
-rw-r--r-- | src/tools/encryption/index.ts | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/tools/encryption/index.ts b/src/tools/encryption/index.ts index 468a7fb..9a95f4b 100644 --- a/src/tools/encryption/index.ts +++ b/src/tools/encryption/index.ts @@ -1,7 +1,7 @@ import { Lock } from '@vicons/tabler'; -import type { ITool } from '../tool'; +import { defineTool } from '../tool'; -export const tool: ITool = { +export const tool = defineTool({ name: 'Encrypt / decrypt text', path: '/encryption', description: 'Encrypt and decrypt text clear text using crypto algorithm like AES, TripleDES, Rabbit or RC4.', @@ -9,4 +9,4 @@ export const tool: ITool = { component: () => import('./encryption.vue'), icon: Lock, redirectFrom: ['/cypher'], -}; +}); |