mirror of
https://github.com/iib0011/omni-tools.git
synced 2025-09-18 21:49:31 +02:00
14 lines
454 B
TypeScript
14 lines
454 B
TypeScript
import { defineTool } from '@tools/defineTool';
|
|
import { lazy } from 'react';
|
|
|
|
export const tool = defineTool('xml', {
|
|
name: 'XML Validator',
|
|
path: 'xml-validator',
|
|
icon: 'mdi:check-decagram',
|
|
description:
|
|
'Validate XML files or strings to ensure they are well-formed and error-free.',
|
|
shortDescription: 'Validate XML for errors.',
|
|
keywords: ['xml', 'validate', 'check', 'syntax', 'error'],
|
|
component: lazy(() => import('./index'))
|
|
});
|