From 3a13376e2b3574bd97a0c4df59593537b2d59016 Mon Sep 17 00:00:00 2001 From: Dmitry Grinko Date: Fri, 10 May 2024 01:10:49 -0700 Subject: [PATCH] init --- backend/src/app.controller.spec.ts | 2 ++ backend/src/app.controller.ts | 1 - 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/backend/src/app.controller.spec.ts b/backend/src/app.controller.spec.ts index f048907..3490b26 100644 --- a/backend/src/app.controller.spec.ts +++ b/backend/src/app.controller.spec.ts @@ -6,11 +6,13 @@ import { RekognitionService } from './services/rekognition.service'; import { Helpers } from './services/helpers.service'; import { ConfigModule, ConfigService } from '@nestjs/config'; import { AppGateway } from './app.gateway'; +import { S3PictureService } from './services/s3-picture.service'; const services = [ S3UserService, DynamodbUserService, RekognitionService, + S3PictureService, Helpers ] diff --git a/backend/src/app.controller.ts b/backend/src/app.controller.ts index 30ee587..2b108b1 100644 --- a/backend/src/app.controller.ts +++ b/backend/src/app.controller.ts @@ -27,7 +27,6 @@ export class AppController { private readonly s3UserService: S3UserService, private readonly rekognitionService: RekognitionService, private readonly dynamodbUserService: DynamodbUserService, - private readonly appGateway: AppGateway, private configService: ConfigService, private helpers: Helpers ) {