mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-24 22:04:56 +00:00
fix: merge DBAL refactor and update import paths
- Merged main branch with DBAL restructure (ts -> development, cpp -> production) - Updated initialize-dbal.server.ts imports to use @/dbal path alias - Fixed dbal-stub import path to @/lib/dbal/dbal-stub - Updated core/dbal-client index.ts to use correct relative path (../../dbal-client) - Resolved merge conflicts from DBAL refactor - Frontend now supports both development (TypeScript) and production (C++ daemon) DBAL Co-authored-by: johndoe6345789 <224850594+johndoe6345789@users.noreply.github.com>
This commit is contained in:
@@ -1,9 +1,9 @@
|
||||
import 'server-only'
|
||||
|
||||
import { DBALClient as StubDBALClient } from '@/lib/dbal-stub'
|
||||
import type { DBALConfig as StubDBALConfig } from '@/lib/dbal-stub'
|
||||
import { DBALClient as RealDBALClient } from '@/dbal/development/src'
|
||||
import type { DBALConfig as RealDBALConfig } from '@/dbal/development/src/runtime/config'
|
||||
import { DBALClient as StubDBALClient } from '@/lib/dbal/dbal-stub'
|
||||
import type { DBALConfig as StubDBALConfig } from '@/lib/dbal/dbal-stub'
|
||||
import { DBALClient as RealDBALClient } from '@/dbal'
|
||||
import type { DBALConfig as RealDBALConfig } from '@/dbal/runtime/config'
|
||||
import { dbalState } from './dbal-state.server'
|
||||
|
||||
/**
|
||||
|
||||
Reference in New Issue
Block a user