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, });