2023-04-19 20:30:45 +02:00
|
|
|
import { UnfoldMoreOutlined } from '@vicons/material';
|
|
|
|
import { defineTool } from '../tool';
|
2024-02-01 14:05:54 +01:00
|
|
|
import { translate } from '@/plugins/i18n.plugin';
|
2023-04-19 20:30:45 +02:00
|
|
|
|
|
|
|
export const tool = defineTool({
|
2024-02-01 14:05:54 +01:00
|
|
|
name: translate('tools.ipv4-range-expander.title'),
|
2023-04-19 20:30:45 +02:00
|
|
|
path: '/ipv4-range-expander',
|
2024-02-01 14:05:54 +01:00
|
|
|
description: translate('tools.ipv4-range-expander.description'),
|
2023-04-19 20:30:45 +02:00
|
|
|
keywords: ['ipv4', 'range', 'expander', 'subnet', 'creator', 'cidr'],
|
|
|
|
component: () => import('./ipv4-range-expander.vue'),
|
|
|
|
icon: UnfoldMoreOutlined,
|
|
|
|
createdAt: new Date('2023-04-19'),
|
|
|
|
});
|