fix: Health Check 엔드포인트에 GET 메서드 추가 (#24)
All checks were successful
SPMS_API/pipeline/head This commit looks good

This commit is contained in:
SEAN 2026-02-09 15:26:34 +09:00
parent 3f439e4d4e
commit 9107726c3b

View File

@ -18,6 +18,7 @@ public class PublicController : ControllerBase
_dbContext = dbContext; _dbContext = dbContext;
} }
[HttpGet("health")]
[HttpPost("health")] [HttpPost("health")]
public async Task<IActionResult> HealthCheckAsync() public async Task<IActionResult> HealthCheckAsync()
{ {