mirror of
https://github.com/iib0011/omni-tools.git
synced 2025-11-09 01:52:30 +05:30
26 lines
656 B
TypeScript
26 lines
656 B
TypeScript
import { defineTool } from '@tools/defineTool';
|
|
import { lazy } from 'react';
|
|
|
|
export const tool = defineTool('number', {
|
|
i18n: {
|
|
name: 'number:randomPortGenerator.title',
|
|
description: 'number:randomPortGenerator.description',
|
|
shortDescription: 'number:randomPortGenerator.shortDescription',
|
|
longDescription: 'number:randomPortGenerator.longDescription',
|
|
userTypes: ['developers']
|
|
},
|
|
path: 'random-port-generator',
|
|
icon: 'mdi:network',
|
|
keywords: [
|
|
'random',
|
|
'port',
|
|
'generator',
|
|
'network',
|
|
'tcp',
|
|
'udp',
|
|
'server',
|
|
'client',
|
|
'development'
|
|
],
|
|
component: lazy(() => import('./index'))
|
|
});
|