From b2c82ebeabd46da0cbe687f4e5736ac27106b228 Mon Sep 17 00:00:00 2001 From: hailin Date: Fri, 19 Dec 2025 05:27:17 -0800 Subject: [PATCH] =?UTF-8?q?fix(identity-service):=20=E4=BF=AE=E5=A4=8D=20P?= =?UTF-8?q?rismaService=20=E5=AF=BC=E5=85=A5=E8=B7=AF=E5=BE=84?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 --- .../identity-service/src/api/controllers/auth.controller.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/services/identity-service/src/api/controllers/auth.controller.ts b/backend/services/identity-service/src/api/controllers/auth.controller.ts index 79dc6bdf..85700900 100644 --- a/backend/services/identity-service/src/api/controllers/auth.controller.ts +++ b/backend/services/identity-service/src/api/controllers/auth.controller.ts @@ -1,7 +1,7 @@ import { Controller, Post, Body, UnauthorizedException, Logger } from '@nestjs/common'; import { ApiTags, ApiOperation, ApiResponse } from '@nestjs/swagger'; import { JwtService } from '@nestjs/jwt'; -import { PrismaService } from '@/infrastructure/persistence/prisma.service'; +import { PrismaService } from '@/infrastructure/persistence/prisma/prisma.service'; import { UserApplicationService } from '@/application/services/user-application.service'; import { Public } from '@/shared/guards/jwt-auth.guard'; import { AutoLoginCommand } from '@/application/commands';