From adceada1b69433d17ba043d75847719d13e13738 Mon Sep 17 00:00:00 2001 From: Mathis HERRIOT <197931332+0x485254@users.noreply.github.com> Date: Tue, 6 Jan 2026 12:09:28 +0100 Subject: [PATCH] feat: add CryptoModule to app imports --- backend/src/app.module.ts | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/backend/src/app.module.ts b/backend/src/app.module.ts index 92f18f9..dba923f 100644 --- a/backend/src/app.module.ts +++ b/backend/src/app.module.ts @@ -3,9 +3,12 @@ import { AppController } from "./app.controller"; import { AppService } from "./app.service"; import {DatabaseModule} from "./database/database.module"; import {ConfigModule} from "@nestjs/config"; +import {CryptoModule} from "./crypto/crypto.module"; @Module({ - imports: [DatabaseModule, + imports: [ + DatabaseModule, + CryptoModule, ConfigModule.forRoot({ isGlobal: true, })],