File size: 413 Bytes
45eaf2a | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | using Microsoft.AspNetCore.Mvc;
namespace AiDevProject.Api.Controllers;
/// <summary>
/// Health check endpoints.
/// </summary>
[ApiController]
[Route("api/[controller]")]
public class HealthController : ControllerBase
{
/// <summary>
/// Health check.
/// </summary>
[HttpGet]
public IActionResult Get()
{
return Ok(new { status = "ok", timestamp = DateTime.UtcNow });
}
}
|