Skip to content

Commit

Permalink
♻️:: 리팩토링
Browse files Browse the repository at this point in the history
  • Loading branch information
ilyoil2 committed Dec 5, 2023
1 parent 5a9b5b0 commit 0b01795
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,12 @@

@RestController
@RequiredArgsConstructor
@RequestMapping("/aster/image")
@RequestMapping("/aster")
public class S3Controller {

private final CreateImageService createImageService;

@PostMapping
@PostMapping("/image")
public ImageUrlResponse createImage(@RequestPart(value = "image", required = false) MultipartFile multipartFiles) {
return createImageService.createImage(multipartFiles);
}
Expand Down

0 comments on commit 0b01795

Please sign in to comment.