feat(new tool): Integers to IP

Fix #1187
This commit is contained in:
sharevb 2024-08-23 21:25:06 +02:00 committed by ShareVB
parent 318fb6efb9
commit 8659024c9b
8 changed files with 170 additions and 25 deletions

View file

@ -0,0 +1,12 @@
import { Binary } from '@vicons/tabler';
import { defineTool } from '../tool';
export const tool = defineTool({
name: 'Integers to IPv4/IPv6',
path: '/integers-to-ip',
description: 'Convert integers to IP',
keywords: ['integers', 'ip', 'ipv4', 'ipv6'],
component: () => import('./integers-to-ip.vue'),
icon: Binary,
createdAt: new Date('2024-07-14'),
});