diff options
author | 2022-11-18 18:36:18 +0100 | |
---|---|---|
committer | 2022-11-18 18:38:50 +0100 | |
commit | bb0eca80a77c315c2abefc8f24c7468e93494d66 (patch) | |
tree | eeeb444d96428cf61138a6b01e6bed5d1a635744 /src/tools/jwt-parser/index.ts | |
parent | 3e4a64551fbfef23d0bae5565799a80c7ef402cb (diff) | |
download | it-tools-bb0eca80a77c315c2abefc8f24c7468e93494d66.tar.gz it-tools-bb0eca80a77c315c2abefc8f24c7468e93494d66.tar.zst it-tools-bb0eca80a77c315c2abefc8f24c7468e93494d66.zip |
added base tool structure
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, +}); |