16 lines
346 B
Java
16 lines
346 B
Java
package ru.soune.no_copy.controller;
|
|||
|
|
|
||
|
|
import org.apache.coyote.Response;
|
||
|
|
import org.springframework.http.HttpStatus;
|
||
|
|
import org.springframework.web.bind.annotation.*;
|
||
|
|
|
||
|
|
@RestController
|
||
|
|
@RequestMapping("/api")
|
||
|
|
public class HealtCheckController {
|
||
|
|
|
||
|
|
@GetMapping("/healt")
|
||
|
|
public HttpStatus healtCheck() {
|
||
|
|
return HttpStatus.OK;
|
||
|
|
}
|
||
|
|
}
|