14 lines
517 B
TypeScript
14 lines
517 B
TypeScript
import { UnfoldMoreOutlined } from '@vicons/material';
|
|
import { defineTool } from '../tool';
|
|
import { translate as t } from '@/plugins/i18n.plugin';
|
|
|
|
export const tool = defineTool({
|
|
name: t('tools.ipv4-range-expander.title'),
|
|
path: '/ipv4-range-expander',
|
|
description: t('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'),
|
|
});
|