2025-12-08 12:38:56 +07:00
|
|
|
package ru.soune.no_copy.controller;
|
|
|
|
|
|
|
|
|
|
import org.apache.coyote.Response;
|
|
|
|
|
import org.springframework.http.HttpStatus;
|
|
|
|
|
import org.springframework.web.bind.annotation.*;
|
|
|
|
|
|
|
|
|
|
@RestController
|
2025-12-10 02:37:31 +07:00
|
|
|
@RequestMapping("check/api")
|
2025-12-08 12:38:56 +07:00
|
|
|
public class HealtCheckController {
|
|
|
|
|
|
|
|
|
|
@GetMapping("/healt")
|
|
|
|
|
public HttpStatus healtCheck() {
|
|
|
|
|
return HttpStatus.OK;
|
|
|
|
|
}
|
|
|
|
|
}
|