add - 添加 健康检查 接口
This commit is contained in:
parent
cc84978596
commit
1ba174b47c
@ -0,0 +1,13 @@
|
||||
package cn.axzo.workflow.server.controller.health;
|
||||
|
||||
import org.springframework.web.bind.annotation.GetMapping;
|
||||
import org.springframework.web.bind.annotation.RestController;
|
||||
|
||||
@RestController
|
||||
public class HealthCheckController {
|
||||
|
||||
@GetMapping("/checkDeath")
|
||||
public String checkDeath() {
|
||||
return "hello";
|
||||
}
|
||||
}
|
||||
Loading…
Reference in New Issue
Block a user