blob: eb1c6e4880378bb1458b803cf353714c46917dd9 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
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,
});
|