Files
btcpayserver/BTCPayServer/Controllers/GreenField/HealthController.cs
2020-04-21 14:59:33 +02:00

17 lines
355 B
C#

using Microsoft.AspNetCore.Authorization;
using Microsoft.AspNetCore.Mvc;
namespace BTCPayServer.Controllers.GreenField
{
[ApiController]
public class HealthController : ControllerBase
{
[AllowAnonymous]
[HttpGet("~/api/v1/health")]
public ActionResult GetHealth()
{
return Ok();
}
}
}