mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-04-23 08:16:16 -04:00
13 lines
528 B
TypeScript
13 lines
528 B
TypeScript
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'),
|
|
});
|