mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-05-04 05:19:12 -04:00
13 lines
519 B
TypeScript
13 lines
519 B
TypeScript
import { BuildingFactory } from '@vicons/tabler';
|
|
import { defineTool } from '../tool';
|
|
import { translate } from '@/plugins/i18n.plugin';
|
|
|
|
export const tool = defineTool({
|
|
name: translate('tools.ipv6-ula-generator.title'),
|
|
path: '/ipv6-ula-generator',
|
|
description: translate('tools.ipv6-ula-generator.description'),
|
|
keywords: ['ipv6', 'ula', 'generator', 'rfc4193', 'network', 'private'],
|
|
component: () => import('./ipv6-ula-generator.vue'),
|
|
icon: BuildingFactory,
|
|
createdAt: new Date('2023-04-09'),
|
|
});
|