fix(identity-service): 修复 PrismaService 导入路径

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
hailin 2025-12-19 05:27:17 -08:00
parent cb40463521
commit b2c82ebeab
1 changed files with 1 additions and 1 deletions

View File

@ -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';