Skip to content

Commit

Permalink
๐Ÿ›fix: main api ๋ฐ ์ง€์—ญ ๋ณ€ํ™˜ api ์ˆ˜์ •
Browse files Browse the repository at this point in the history
  • Loading branch information
seheonnn committed Jun 26, 2024
1 parent 7f0e484 commit dd3aa60
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,11 @@ public ApiResponse<MainWeatherResponse> getMainWeather(@ModelAttribute @Valid Ge
weatherService.getMainWeather(getWeatherRequest.latitude(), getWeatherRequest.longitude()));
}

@Operation(summary = "์œ„๋„, ๊ฒฝ๋„ -> ์ง€์—ญ ๋ณ€ํ™˜",
description = "{"
+ "\"latitude\": 37.41,"
+ "\"longitude\": 126.73"
+ "}")
@GetMapping("/region")
public ApiResponse<String> convertGpsToRegionName(@ModelAttribute @Valid GetWeatherRequest getWeatherRequest) {
return ApiResponse.onSuccess(
Expand Down

0 comments on commit dd3aa60

Please sign in to comment.