From fd32a142216455429a8f606d5af1d5cde80f7cd9 Mon Sep 17 00:00:00 2001 From: Avnyr Date: Wed, 7 Jan 2026 21:09:17 +0100 Subject: [PATCH] Add `S3Module` to `app.module.ts` for S3 integration --- 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 2cfb821..8fef748 100644 --- a/backend/src/app.module.ts +++ b/backend/src/app.module.ts @@ -4,11 +4,13 @@ import { AppController } from "./app.controller"; import { AppService } from "./app.service"; import { CryptoModule } from "./crypto/crypto.module"; import { DatabaseModule } from "./database/database.module"; +import { S3Module } from "./s3/s3.module"; @Module({ imports: [ DatabaseModule, CryptoModule, + S3Module, ConfigModule.forRoot({ isGlobal: true, }),