blob: dcce4f1f40c11a9a768c11badb9623e0e45a392a (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
import { Key } from '@vicons/tabler';
import { defineTool } from '../tool';
export const tool = defineTool({
name: 'JWT parser',
path: '/jwt-parser',
description: 'Parse a JWT (JSON Web Token) to display its content.',
keywords: ['jwt', 'parser'],
component: () => import('./jwt-parser.vue'),
icon: Key,
});
|