diff options
Diffstat (limited to 'src/tools/jwt-parser/index.ts')
-rw-r--r-- | src/tools/jwt-parser/index.ts | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/tools/jwt-parser/index.ts b/src/tools/jwt-parser/index.ts new file mode 100644 index 0000000..dcce4f1 --- /dev/null +++ b/src/tools/jwt-parser/index.ts @@ -0,0 +1,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, +}); |