feat(new-tool): mac address lookup

This commit is contained in:
Corentin Thomasset 2023-04-07 00:18:06 +02:00 committed by Corentin THOMASSET
parent 1060652590
commit 076df11024
7 changed files with 209 additions and 9 deletions

View file

@ -0,0 +1,12 @@
import { Devices } from '@vicons/tabler';
import { defineTool } from '../tool';
export const tool = defineTool({
name: 'MAC adrdress lookup',
path: '/mac-adrdress-lookup',
description: 'Find the vendor and manufacturer of a device by its MAC address.',
keywords: ['mac', 'adrdress', 'lookup', 'vendor', 'parser', 'manufacturer'],
component: () => import('./mac-address-lookup.vue'),
icon: Devices,
createdAt: new Date('2023-04-06'),
});