make service controller for healthchecks

This commit is contained in:
2024-05-28 22:41:52 +03:00
parent 77d89f011b
commit 998fe10e2d
+13
View File
@@ -0,0 +1,13 @@
using Microsoft.AspNetCore.Mvc;
namespace Kruzya.TelegramBot.Core.Controllers
{
public class Service : ControllerBase
{
[HttpGet]
public ActionResult Ping()
{
return Ok("pong");
}
}
}