chore: 优化authserver代码

This commit is contained in:
2025-10-25 14:39:24 +08:00
parent 0f55e2e108
commit a695a21bcb
12 changed files with 115 additions and 52 deletions

View File

@ -9,4 +9,10 @@ public class HomeController : AbpController
{
return Redirect("~/swagger");
}
[HttpGet("health")]
public ActionResult Health()
{
return Ok("online");
}
}