mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-05-08 15:15:02 -04:00
13 lines
506 B
TypeScript
13 lines
506 B
TypeScript
import { BuildingFactory } from '@vicons/tabler';
|
|
import { defineTool } from '../tool';
|
|
|
|
export const tool = defineTool({
|
|
name: 'IPv6 ULA generator',
|
|
path: '/ipv6-ula-generator',
|
|
description:
|
|
'This generator generates your own local, non-routable IP addresses on your network according to RFC4193.',
|
|
keywords: ['ipv6', 'ula', 'generator', 'rfc4193', 'network', 'private'],
|
|
component: () => import('./ipv6-ula-generator.vue'),
|
|
icon: BuildingFactory,
|
|
createdAt: new Date('2023-04-09'),
|
|
});
|