Data types refactor (#241)

* refactor data types structure

* refactor data types structure
This commit is contained in:
Guy Ben-Aharon
2024-10-06 17:50:52 +03:00
committed by GitHub
parent b1ad2641e3
commit 251c1e2def
13 changed files with 372 additions and 360 deletions

View File

@@ -4,7 +4,7 @@ import type { Diagram } from '../../domain/diagram';
import { OPENAI_API_KEY } from '@/lib/env';
import type { DatabaseType } from '@/lib/domain/database-type';
import type { DBTable } from '@/lib/domain/db-table';
import type { DataType } from '../data-types';
import type { DataType } from '../data-types/data-types';
const openai = createOpenAI({
apiKey: OPENAI_API_KEY,