1
0
Fork 0
mirror of https://github.com/CorentinTh/it-tools.git synced 2025-07-24 15:49:37 +02:00
it-tools/src/tools/ed25519-key-pair-generator/index.ts
2023-03-27 00:01:46 +02:00

11 lines
No EOL
358 B
TypeScript

import { ArrowsShuffle } from '@vicons/tabler';
import { defineTool } from '../tool';
export const tool = defineTool({
name: 'Ed25519 key pair generator',
path: '/ed25519-key-pair-generator',
description: '',
keywords: ['ed25519', 'key', 'pair', 'generator'],
component: () => import('./ed25519-key-pair-generator.vue'),
icon: ArrowsShuffle,
});