diff --git a/Core/Controllers/Service.cs b/Core/Controllers/Service.cs new file mode 100644 index 0000000..5a1d870 --- /dev/null +++ b/Core/Controllers/Service.cs @@ -0,0 +1,13 @@ +using Microsoft.AspNetCore.Mvc; + +namespace Kruzya.TelegramBot.Core.Controllers +{ + public class Service : ControllerBase + { + [HttpGet] + public ActionResult Ping() + { + return Ok("pong"); + } + } +}