Skip to content

Commit

Permalink
📝 RecyclablesController 에 process 메서드의 엔드포인트를 process_image 에서 proces…
Browse files Browse the repository at this point in the history
…s 로 변경
  • Loading branch information
uuuuuuuk committed Dec 15, 2023
1 parent b1b3fa5 commit 3eab815
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ class RecyclablesController(
listAllRecyclablesService.execute()
.let { ResponseEntity.status(HttpStatus.OK).body(it) }

@PostMapping("/process_image")
@PostMapping("/process")
fun process(@RequestPart(value = "recyclables") multipartFile: MultipartFile): ResponseEntity<ListDetailRecyclablesResponseDto> =
processRecyclablesImageService.execute(multipartFile)
.let { ResponseEntity.status(HttpStatus.OK).body(it) }
Expand Down

0 comments on commit 3eab815

Please sign in to comment.