More AI changes

This commit is contained in:
moarten
2026-04-09 22:35:54 +02:00
parent 569cfbb85d
commit 87d15b99ed
24 changed files with 973 additions and 20 deletions

View File

@@ -1,14 +1,22 @@
using Microsoft.AspNetCore.Http.HttpResults;
using Microsoft.AspNetCore.Mvc;
namespace Lutra.API.Controllers;
/// <summary>
/// Exposes a lightweight health check for the API.
/// </summary>
[ApiController]
[Route("health")]
public class HealthController : Controller
[Produces("application/json")]
[ProducesResponseType(StatusCodes.Status200OK)]
public class HealthController : ControllerBase
{
/// <summary>
/// Returns the API health status.
/// </summary>
[HttpGet]
public IActionResult Index()
{
return Ok();
}
}
}