fix alive response

This commit is contained in:
Anton Romanov 2022-08-11 13:42:39 +04:00
parent ae24e05300
commit f75511f0e0

View File

@ -25,7 +25,7 @@ public class UtilController {
@GetMapping("alive")
@Operation(description = "Проверка сервиса")
public ResponseEntity<Map<String, Boolean> isAlive() {
public ResponseEntity<Map<String, Boolean>> isAlive() {
return new ResponseEntity<>(Map.of("result", true), HttpStatus.OK);
}