Skip to content
This repository has been archived by the owner on May 14, 2024. It is now read-only.

Commit

Permalink
fix: S3 Util Service를 user module에 추가하라
Browse files Browse the repository at this point in the history
  • Loading branch information
kaaang committed Feb 11, 2024
1 parent 4d027ae commit 872c9a7
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/user/user.module.ts
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
import { Module } from '@nestjs/common';
import { UserService } from './user.service';
import { UserController } from './user.controller';
import { S3UtilService } from '../utils/S3.service';

@Module({
controllers: [UserController],
providers: [UserService],
providers: [UserService, S3UtilService],
})
export class UserModule {}

0 comments on commit 872c9a7

Please sign in to comment.