1234567891011121314151617181920 |
- package com.tzld.piaoquan.wecom.controller;
- import org.springframework.web.bind.annotation.GetMapping;
- import org.springframework.web.bind.annotation.RequestMapping;
- import org.springframework.web.bind.annotation.RestController;
- @RestController
- @RequestMapping("/")
- public class IndexController {
- /**
- * 探活
- *
- * @return
- */
- @GetMapping("/healthcheck")
- public String healthcheck() {
- return "ok";
- }
- }
|