mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-04-23 16:26:15 -04:00
12 lines
438 B
TypeScript
12 lines
438 B
TypeScript
![]() |
import { Server } from '@vicons/tabler';
|
||
|
import type { ITool } from '../Tool';
|
||
|
|
||
|
export const tool: ITool = {
|
||
|
name: 'Random port generator',
|
||
|
path: '/random-port-generator',
|
||
|
description: 'Generate random port numbers outside of the range of "known" ports (0-1023).',
|
||
|
keywords: ['system', 'port', 'lan', 'generator', 'random', 'developement', 'computer'],
|
||
|
component: () => import('./random-port-generator.vue'),
|
||
|
icon: Server,
|
||
|
};
|