blob: 49dfae951b24a232efe6c22606f36a18b5cef5fa (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
import { UnfoldMoreOutlined } from '@vicons/material';
import { defineTool } from '../tool';
import { translate } from '@/plugins/i18n.plugin';
export const tool = defineTool({
name: translate('tools.ipv4-range-expander.title'),
path: '/ipv4-range-expander',
description: translate('tools.ipv4-range-expander.description'),
keywords: ['ipv4', 'range', 'expander', 'subnet', 'creator', 'cidr'],
component: () => import('./ipv4-range-expander.vue'),
icon: UnfoldMoreOutlined,
createdAt: new Date('2023-04-19'),
});
|