Files
telegram-bot/Core/Controllers/Service.cs

14 lines
244 B
C#

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