mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-04-22 15:56:15 -04:00
11 lines
289 B
TypeScript
11 lines
289 B
TypeScript
import { ArrowsShuffle } from '@vicons/tabler';
|
|
import { defineTool } from '../tool';
|
|
|
|
export const tool = defineTool({
|
|
name: 'JWT parser',
|
|
path: '/jwt-parser',
|
|
description: '',
|
|
keywords: ['jwt', 'parser'],
|
|
component: () => import('./jwt-parser.vue'),
|
|
icon: ArrowsShuffle,
|
|
});
|