mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-05-04 13:29:13 -04:00
12 lines
370 B
TypeScript
12 lines
370 B
TypeScript
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'),
|
|
});
|