| using Microsoft.AspNetCore.Mvc; | |
| namespace AiDevProject.Api.Controllers; | |
| /// <summary> | |
| /// Health check endpoints. | |
| /// </summary> | |
| [] | |
| [] | |
| public class HealthController : ControllerBase | |
| { | |
| /// <summary> | |
| /// Health check. | |
| /// </summary> | |
| [] | |
| public IActionResult Get() | |
| { | |
| return Ok(new { status = "ok", timestamp = DateTime.UtcNow }); | |
| } | |
| } | |