aboutsummaryrefslogtreecommitdiff
path: root/src/tools/random-port-generator/index.ts
blob: e300b8f0dbe0f9ecbe3713a4df693aa066703823 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
import { Server } from '@vicons/tabler';
import { defineTool } from '../tool';
import { translate } from '@/plugins/i18n.plugin';

export const tool = defineTool({
  name: translate('tools.random-port-generator.title'),
  path: '/random-port-generator',
  description: translate('tools.random-port-generator.description'),
  keywords: ['system', 'port', 'lan', 'generator', 'random', 'development', 'computer'],
  component: () => import('./random-port-generator.vue'),
  icon: Server,
});