using Microsoft.AspNetCore.Mvc; namespace Kruzya.TelegramBot.Core.Controllers { public class Service : ControllerBase { [HttpGet] public ActionResult Ping() { return Ok("pong"); } } }