diff --git a/apps/backend/src/app/machines/machines.module.ts b/apps/backend/src/app/machines/machines.module.ts index f0a79fc..6ab956d 100644 --- a/apps/backend/src/app/machines/machines.module.ts +++ b/apps/backend/src/app/machines/machines.module.ts @@ -2,9 +2,10 @@ import { Module } from "@nestjs/common"; import { DbModule } from "apps/backend/src/app/db/db.module"; import { MachinesController } from "apps/backend/src/app/machines/machines.controller"; import { MachinesService } from "apps/backend/src/app/machines/machines.service"; +import { CredentialsModule } from 'apps/backend/src/app/credentials/credentials.module'; @Module({ - imports: [DbModule], + imports: [DbModule, CredentialsModule], controllers: [MachinesController], providers: [MachinesService], })