Skip to content

Commit

Permalink
fix: Modify download controller method return type
Browse files Browse the repository at this point in the history
  • Loading branch information
npole0103 committed Sep 6, 2022
1 parent 3b31d61 commit 58317f6
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ public List<String> getBranchList() {
}

@PostMapping("download")
public String download(@Valid @RequestBody Request requestDto) throws Exception {
public ReadmeItem download(@Valid @RequestBody Request requestDto) throws Exception {
return service.download(requestDto);
}

Expand Down

0 comments on commit 58317f6

Please sign in to comment.