2022-04-13 13:55:41 +02:00
|
|
|
import { Server } from '@vicons/tabler';
|
2022-06-01 23:52:21 +02:00
|
|
|
import { defineTool } from '../tool';
|
2024-02-01 14:05:54 +01:00
|
|
|
import { translate } from '@/plugins/i18n.plugin';
|
2022-04-13 13:55:41 +02:00
|
|
|
|
2022-06-01 23:52:21 +02:00
|
|
|
export const tool = defineTool({
|
2024-02-01 14:05:54 +01:00
|
|
|
name: translate('tools.random-port-generator.title'),
|
2022-04-13 13:55:41 +02:00
|
|
|
path: '/random-port-generator',
|
2024-02-01 14:05:54 +01:00
|
|
|
description: translate('tools.random-port-generator.description'),
|
2022-05-09 14:38:54 +02:00
|
|
|
keywords: ['system', 'port', 'lan', 'generator', 'random', 'development', 'computer'],
|
2022-04-13 13:55:41 +02:00
|
|
|
component: () => import('./random-port-generator.vue'),
|
|
|
|
icon: Server,
|
2022-06-01 23:52:21 +02:00
|
|
|
});
|