using Microsoft.AspNetCore.Mvc; using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; namespace Ropin.Inspection.Api.Controllers { /// /// 健康检查 /// [Route("HealthCheck")] [ApiController] public class HealthCheckController : ControllerBase { /// /// 健康检查 /// /// [HttpGet] public ActionResult GetHealthCheck() { return Ok(); } } }