using Microsoft.AspNetCore.Mvc;
namespace Lutra.API.Controllers;
///
/// Exposes a lightweight health check for the API.
///
[ApiController]
[Route("health")]
[Produces("application/json")]
[ProducesResponseType(StatusCodes.Status200OK)]
public class HealthController : ControllerBase
{
///
/// Returns the API health status.
///
[HttpGet]
public IActionResult Index()
{
return Ok();
}
}