mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-10-23 04:52:14 +00:00
27 lines
616 B
TypeScript
27 lines
616 B
TypeScript
import { Database } from '@vicons/tabler';
|
|
import { defineTool } from '../tool';
|
|
|
|
export const tool = defineTool({
|
|
name: 'SQL prettify and format',
|
|
path: '/sql-prettify',
|
|
description: 'Format and prettify your SQL queries online (it supports various SQL dialects).',
|
|
keywords: [
|
|
'sql',
|
|
'prettify',
|
|
'beautify',
|
|
'GCP BigQuery',
|
|
'IBM DB2',
|
|
'Apache Hive',
|
|
'MariaDB',
|
|
'MySQL',
|
|
'Couchbase N1QL',
|
|
'Oracle PL/SQL',
|
|
'PostgreSQL',
|
|
'Amazon Redshift',
|
|
'Spark',
|
|
'SQL Server Transact-SQL',
|
|
],
|
|
component: () => import('./sql-prettify.vue'),
|
|
icon: Database,
|
|
});
|