mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-05-07 14:57:12 -04:00
12 lines
515 B
TypeScript
12 lines
515 B
TypeScript
import { UnfoldMoreOutlined } from '@vicons/material';
|
|
import { defineTool } from '../tool';
|
|
|
|
export const tool = defineTool({
|
|
name: 'IP Subnets Exclude Calculator',
|
|
path: '/ip-include-exclude',
|
|
description: 'Substract a disallowed IP Ranges/Mask/CIDR list from an allowed IP Ranges/Mask/CIDR list',
|
|
keywords: ['ip', 'allowed', 'disallowed', 'include', 'exclude', 'subnet', 'cidr'],
|
|
component: () => import('./ip-include-exclude.vue'),
|
|
icon: UnfoldMoreOutlined,
|
|
createdAt: new Date('2024-08-15'),
|
|
});
|