mirror of
https://github.com/iib0011/omni-tools.git
synced 2025-12-29 16:16:02 +00:00
17 lines
433 B
TypeScript
17 lines
433 B
TypeScript
import { defineTool } from '@tools/defineTool';
|
|
import { lazy } from 'react';
|
|
|
|
export const tool = defineTool('list', {
|
|
path: 'group',
|
|
icon: 'pajamas:group',
|
|
|
|
keywords: ['group'],
|
|
component: lazy(() => import('./index')),
|
|
i18n: {
|
|
name: 'list:group.title',
|
|
description: 'list:group.description',
|
|
shortDescription: 'list:group.shortDescription',
|
|
userTypes: ['General Users', 'Students', 'Developers']
|
|
}
|
|
});
|