From d8c10350418000c02c7828da50da19944dc28f9d Mon Sep 17 00:00:00 2001 From: Hide_D Date: Mon, 5 Jan 2026 15:23:36 +0000 Subject: [PATCH] =?UTF-8?q?refactor:=20GatewayPrisma=20=EA=B0=80=EC=A0=B8?= =?UTF-8?q?=EC=98=A4=EA=B8=B0=20=EB=B0=A9=EC=8B=9D=20=EB=B3=80=EA=B2=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/gateway-api/src/index.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/app/gateway-api/src/index.ts b/app/gateway-api/src/index.ts index 5c2a210..ab4388e 100644 --- a/app/gateway-api/src/index.ts +++ b/app/gateway-api/src/index.ts @@ -8,7 +8,8 @@ export * from './config.js'; export * from './context.js'; export * from './router.js'; export * from './server.js'; -export { GatewayPrisma } from '@sammo-ts/infra'; +import { GatewayPrisma } from '@sammo-ts/infra'; +export { GatewayPrisma }; export type JsonObject = GatewayPrisma.JsonObject; export type JsonArray = GatewayPrisma.JsonArray; export * from './orchestrator/profileRepository.js';