mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-04-23 00:06:15 -04:00
12 lines
289 B
TypeScript
12 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,
|
||
|
});
|