added base tool structure

This commit is contained in:
bastantoine 2022-11-18 18:36:18 +01:00
parent 3e4a64551f
commit bb0eca80a7
4 changed files with 42 additions and 0 deletions

View file

@ -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,
});