Files
Telegram-Bot-Template/Controllers/ExampleController.cs
Dmitriy yawaflua Andreev 7266036ccf Add project files.
2024-07-28 21:47:13 +03:00

12 lines
196 B
C#

using Microsoft.AspNetCore.Mvc;
namespace TG_Bot_Template.Controllers
{
[ApiController]
[Route("[controller]")]
public class ExampleController : ControllerBase
{
}
}