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