mirror of
https://github.com/iib0011/omni-tools.git
synced 2025-12-17 17:56:38 +00:00
15 lines
472 B
TypeScript
15 lines
472 B
TypeScript
|
|
import { defineTool } from '@tools/defineTool';
|
||
|
|
import { lazy } from 'react';
|
||
|
|
|
||
|
|
export const tool = defineTool('string', {
|
||
|
|
path: 'password-generator',
|
||
|
|
icon: 'material-symbols:key',
|
||
|
|
keywords: ['password', 'generator', 'random', 'secure'],
|
||
|
|
component: lazy(() => import('./index')),
|
||
|
|
i18n: {
|
||
|
|
name: 'string:passwordGenerator.title',
|
||
|
|
description: 'string:passwordGenerator.description',
|
||
|
|
shortDescription: 'string:passwordGenerator.shortDescription'
|
||
|
|
}
|
||
|
|
});
|