From 34bed246c3f87f1b9519ab33d16cfdb400f9310d Mon Sep 17 00:00:00 2001 From: JohnDoe6345789 Date: Fri, 26 Dec 2025 03:44:21 +0000 Subject: [PATCH] code: nextjs,frontends,adapter (2 files) --- .../src/lib/db/dbal-client/adapter/create-prisma-adapter.ts | 2 +- frontends/nextjs/src/lib/db/dbal-client/adapter/get-adapter.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/frontends/nextjs/src/lib/db/dbal-client/adapter/create-prisma-adapter.ts b/frontends/nextjs/src/lib/db/dbal-client/adapter/create-prisma-adapter.ts index 845aa48f7..45717cb85 100644 --- a/frontends/nextjs/src/lib/db/dbal-client/adapter/create-prisma-adapter.ts +++ b/frontends/nextjs/src/lib/db/dbal-client/adapter/create-prisma-adapter.ts @@ -1,4 +1,4 @@ -import type { DBALAdapter } from './types' +import type { DBALAdapter } from '../types' import { closeConnection } from './close-connection' import { createEntity } from '../crud/write/create-entity' import { deleteEntity } from '../crud/write/delete-entity' diff --git a/frontends/nextjs/src/lib/db/dbal-client/adapter/get-adapter.ts b/frontends/nextjs/src/lib/db/dbal-client/adapter/get-adapter.ts index 75ed156dd..1a67b7cf7 100644 --- a/frontends/nextjs/src/lib/db/dbal-client/adapter/get-adapter.ts +++ b/frontends/nextjs/src/lib/db/dbal-client/adapter/get-adapter.ts @@ -1,4 +1,4 @@ -import type { DBALAdapter } from './types' +import type { DBALAdapter } from '../types' import { prismaAdapter } from './create-prisma-adapter' /**