feat(new tool): DNS query (over HTTPS)

Fix part of #831
This commit is contained in:
sharevb 2024-10-26 21:59:46 +02:00
parent 80e46c9292
commit 2df93737e8
4 changed files with 139 additions and 1 deletions

View file

@ -0,0 +1,12 @@
import { World } from '@vicons/tabler';
import { defineTool } from '../tool';
export const tool = defineTool({
name: 'DNS Queries',
path: '/dns-queries',
description: 'Perform DNS Queries (over HTTPS)',
keywords: ['dns', 'nslookup', 'queries'],
component: () => import('./dns-queries.vue'),
icon: World,
createdAt: new Date('2024-08-15'),
});