Skip to content

Commit

Permalink
[Chore] 파일 이동
Browse files Browse the repository at this point in the history
  • Loading branch information
parkrootseok committed Jun 19, 2023
1 parent ada7587 commit aaa77f9
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package shop.cazait.domain.s3.api;
package shop.cazait.infra.s3.api;

import io.swagger.v3.oas.annotations.Operation;
import io.swagger.v3.oas.annotations.Parameter;
Expand All @@ -8,8 +8,8 @@
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestParam;
import org.springframework.web.bind.annotation.RestController;
import shop.cazait.domain.s3.dto.response.PreSignedUrlCreateOutDTO;
import shop.cazait.domain.s3.service.S3Service;
import shop.cazait.infra.s3.dto.response.PreSignedUrlCreateOutDTO;
import shop.cazait.infra.s3.service.S3Service;
import shop.cazait.global.common.dto.response.SuccessResponse;
import shop.cazait.global.config.encrypt.NoAuth;
import shop.cazait.global.error.status.SuccessStatus;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package shop.cazait.domain.s3.dto.response;
package shop.cazait.infra.s3.dto.response;

import io.swagger.v3.oas.annotations.media.Schema;
import lombok.AccessLevel;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package shop.cazait.domain.s3.service;
package shop.cazait.infra.s3.service;

import com.amazonaws.HttpMethod;
import com.amazonaws.services.s3.AmazonS3;
Expand All @@ -12,7 +12,7 @@
import lombok.extern.slf4j.Slf4j;
import org.springframework.beans.factory.annotation.Value;
import org.springframework.stereotype.Service;
import shop.cazait.domain.s3.dto.response.PreSignedUrlCreateOutDTO;
import shop.cazait.infra.s3.dto.response.PreSignedUrlCreateOutDTO;

@Slf4j
@Service
Expand Down

0 comments on commit aaa77f9

Please sign in to comment.