You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
479 B
20 lines
479 B
namespace Tiobon.Core.Controllers
|
|
{
|
|
/// <summary>
|
|
/// 健康检查
|
|
/// </summary>
|
|
[Route("[controller]")]
|
|
[ApiController, ApiExplorerSettings(GroupName = Grouping.GroupName_Other)]
|
|
public class HealthCheckController : ControllerBase
|
|
{
|
|
/// <summary>
|
|
/// 健康检查接口
|
|
/// </summary>
|
|
/// <returns></returns>
|
|
[HttpGet]
|
|
public IActionResult Get()
|
|
{
|
|
return Ok();
|
|
}
|
|
}
|
|
} |