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, }),