From 07d65484c34dc0a812a0ffd9248f4ead0f6f7c38 Mon Sep 17 00:00:00 2001 From: Mathis Date: Mon, 7 Oct 2024 12:01:07 +0200 Subject: [PATCH] Add DbModule import to GroupsModule The DbModule import was moved to ensure proper load order and maintain consistency within the module imports. This change will help in avoiding potential dependency injection issues. --- apps/backend/src/app/groups/groups.module.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/backend/src/app/groups/groups.module.ts b/apps/backend/src/app/groups/groups.module.ts index 608a07e..ea277f3 100644 --- a/apps/backend/src/app/groups/groups.module.ts +++ b/apps/backend/src/app/groups/groups.module.ts @@ -1,7 +1,7 @@ import { Module } from "@nestjs/common"; +import { DbModule } from "../db/db.module"; import { GroupsController } from "./groups.controller"; import { GroupsService } from "./groups.service"; -import { DbModule } from '../db/db.module'; @Module({ imports: [DbModule],