Add endpoints for status monitoring

This commit is contained in:
jvyden 2022-08-01 01:20:05 -04:00
parent 34d0ec0337
commit 99f7dadb21
No known key found for this signature in database
GPG key ID: 18BCF2BE0262B278
5 changed files with 54 additions and 18 deletions

View file

@ -0,0 +1,12 @@
using Microsoft.AspNetCore.Mvc;
namespace LBPUnion.ProjectLighthouse.Servers.API.Controllers;
[ApiController]
[Route("/api/v1")]
[Produces("application/json")]
public class StatusController : ControllerBase
{
[HttpGet("status")]
public IActionResult GetStatus() => this.Ok();
}