Commit 69c56ff9 authored by jiangyz's avatar jiangyz

健康检查

parent 200a6427
Pipeline #25209 passed with stages
in 2 minutes and 51 seconds
package com.infoepoch.pms.agent.controller;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RestController;
/**
* Author liucy(liucy@infoepoch.com)
* Date 2020/12/28 16:56
*/
@RestController
public class HealthyController
{
@GetMapping(path = "healthy")
public String healthy()
{
return "SUCCESS ARM";
}
}
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