Commit 892059a7 authored by 李健华's avatar 李健华

添加健康检测

parent fe6950ed
package cn.quantgroup.Controller;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
@RestController
@RequestMapping("/tech")
public class TechController {
/**
*
* @return
*/
@GetMapping("/health/check")
public String check() {
return "{\"code\": 200,\"message\": \"\"}";
}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment