mirror of
https://github.com/Bubuni-Team/telegram-bot.git
synced 2026-07-31 00:29:24 +03:00
make service controller for healthchecks
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
using Microsoft.AspNetCore.Mvc;
|
||||
|
||||
namespace Kruzya.TelegramBot.Core.Controllers
|
||||
{
|
||||
public class Service : ControllerBase
|
||||
{
|
||||
[HttpGet]
|
||||
public ActionResult Ping()
|
||||
{
|
||||
return Ok("pong");
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user