[성현모] Healty 추가

This commit is contained in:
SHM
2025-05-13 09:50:00 +09:00
parent 0a999434f0
commit a1553d88bb
4 changed files with 19 additions and 1 deletions

View File

@ -37,6 +37,13 @@ namespace VPKI.Web.Api.Controllers
_authService = authService;
}
[HttpGet("/health")]
public async Task<IResult> Health()
{
await Task.CompletedTask;
return Results.Ok("Healthy");
}
[HttpPost("regisger")]
public async Task<IResult> Register([FromBody] RegisterModel request)
{