mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-04-20 06:55:06 -04:00
14 lines
513 B
TypeScript
14 lines
513 B
TypeScript
![]() |
import { UnfoldMoreOutlined } from '@vicons/material';
|
||
|
import { defineTool } from '../tool';
|
||
|
|
||
|
export const tool = defineTool({
|
||
|
name: 'IPv4 range expander',
|
||
|
path: '/ipv4-range-expander',
|
||
|
description:
|
||
|
'Given a start and an end IPv4 address this tool calculates a valid IPv4 network with its CIDR notation.',
|
||
|
keywords: ['ipv4', 'range', 'expander', 'subnet', 'creator', 'cidr'],
|
||
|
component: () => import('./ipv4-range-expander.vue'),
|
||
|
icon: UnfoldMoreOutlined,
|
||
|
createdAt: new Date('2023-04-19'),
|
||
|
});
|