diff options
Diffstat (limited to '')
-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..eb1c6e4 --- /dev/null +++ b/src/tools/jwt-parser/index.ts @@ -0,0 +1,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, +}); |