Merge pull request 'NCP-4' (#6) from NCP-4 into dev
Test Workflow / test (push) Successful in 2s

Reviewed-on: #6
This commit was merged in pull request #6.
This commit is contained in:
2025-12-08 14:57:16 +08:00
@@ -0,0 +1,15 @@
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;
}
}