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

14 lines
244 B
C#
Raw Normal View History

2024-05-28 22:41:52 +03:00
using Microsoft.AspNetCore.Mvc;
namespace Kruzya.TelegramBot.Core.Controllers
{
public class Service : ControllerBase
{
[HttpGet]
public ActionResult Ping()
{
return Ok("pong");
}
}
}