Files
Swarm/DysonNetwork.Gateway/Health/GatewayStatusController.cs
2025-12-24 22:09:03 +08:00

14 lines
337 B
C#

using Microsoft.AspNetCore.Mvc;
namespace DysonNetwork.Gateway.Health;
[ApiController]
[Route("/health")]
public class GatewayStatusController(GatewayReadinessStore readinessStore) : ControllerBase
{
[HttpGet]
public ActionResult<GatewayReadinessState> GetHealthStatus()
{
return Ok(readinessStore.Current);
}
}