2023-04-09 20:58:27 +02:00
|
|
|
import { BuildingFactory } from '@vicons/tabler';
|
|
|
|
import { defineTool } from '../tool';
|
2024-02-01 14:05:54 +01:00
|
|
|
import { translate } from '@/plugins/i18n.plugin';
|
2023-04-09 20:58:27 +02:00
|
|
|
|
|
|
|
export const tool = defineTool({
|
2024-02-01 14:05:54 +01:00
|
|
|
name: translate('tools.ipv6-ula-generator.title'),
|
2023-04-09 20:58:27 +02:00
|
|
|
path: '/ipv6-ula-generator',
|
2024-02-01 14:05:54 +01:00
|
|
|
description: translate('tools.ipv6-ula-generator.description'),
|
2023-04-09 20:58:27 +02:00
|
|
|
keywords: ['ipv6', 'ula', 'generator', 'rfc4193', 'network', 'private'],
|
|
|
|
component: () => import('./ipv6-ula-generator.vue'),
|
|
|
|
icon: BuildingFactory,
|
|
|
|
createdAt: new Date('2023-04-09'),
|
|
|
|
});
|