From 5e8a29814030d4c3238aeef3c67e0b38f6ae5400 Mon Sep 17 00:00:00 2001 From: admin Date: Fri, 20 Mar 2026 12:01:53 +0700 Subject: [PATCH] 260320:1201 Refactor Overrall #05 failed to start due to missing UuidResolverService dependenc --- backend/src/app.module.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/backend/src/app.module.ts b/backend/src/app.module.ts index 7af6924..b210c7c 100644 --- a/backend/src/app.module.ts +++ b/backend/src/app.module.ts @@ -26,6 +26,7 @@ import { IdempotencyInterceptor } from './common/interceptors/idempotency.interc import { MaintenanceModeGuard } from './common/guards/maintenance-mode.guard'; // Modules +import { CommonModule } from './common/common.module'; import { AuthModule } from './common/auth/auth.module.js'; import { UserModule } from './modules/user/user.module'; import { ProjectModule } from './modules/project/project.module'; @@ -146,6 +147,7 @@ import { MigrationModule } from './modules/migration/migration.module'; ResilienceModule, // 📦 Feature Modules + CommonModule, // Must be imported first to provide global services AuthModule, UserModule, ProjectModule,