mirror of
https://github.com/Bubuni-Team/telegram-bot.git
synced 2026-07-31 00:29:24 +03:00
14 lines
244 B
C#
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");
|
|
}
|
|
}
|
|
}
|