Skip to content

Commit

Permalink
[BE] Refactor : uuid 모듈 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
koomin1227 committed Dec 29, 2023
1 parent db80e02 commit 240debe
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion BE/src/common/S3Handler.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import {
PutObjectCommand,
S3Client,
} from '@aws-sdk/client-s3';
import { uuid } from 'uuidv4';
import { v4 as uuid } from 'uuid';
import { HttpException, Injectable } from '@nestjs/common';

@Injectable()
Expand Down
2 changes: 1 addition & 1 deletion BE/src/common/greenEyeHandler.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import axios from 'axios';
import { uuid } from 'uuidv4';
import { v4 as uuid } from 'uuid';
import { ConfigService } from '@nestjs/config';
import { Injectable } from '@nestjs/common';

Expand Down

0 comments on commit 240debe

Please sign in to comment.