import type { DbType } from "./types"; export const DB_ICONS: Record = { postgresql: "🐘", mysql: "🐬", redis: "⚡", sqlite: "🗄️", }; export const DB_LABELS: Record = { postgresql: "PostgreSQL", mysql: "MySQL", redis: "Redis", sqlite: "SQLite", };