mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-04-20 14:56:17 -04:00
12 lines
498 B
TypeScript
12 lines
498 B
TypeScript
![]() |
import { RouterOutlined } from '@vicons/material';
|
||
|
import { defineTool } from '../tool';
|
||
|
|
||
|
export const tool = defineTool({
|
||
|
name: 'IPv4 subnet calculator',
|
||
|
path: '/ipv4-subnet-calculator',
|
||
|
description: 'Parse your IPv4 CIDR blocks and get all the info you need about your sub network.',
|
||
|
keywords: ['ipv4', 'subnet', 'calculator', 'mask', 'network', 'cidr', 'netmask', 'bitmask', 'broadcast', 'address'],
|
||
|
component: () => import('./ipv4-subnet-calculator.vue'),
|
||
|
icon: RouterOutlined,
|
||
|
});
|