mirror of
https://github.com/yawaflua/Telegram-Bot-Template.git
synced 2025-12-09 03:49:30 +02:00
12 lines
196 B
C#
12 lines
196 B
C#
using Microsoft.AspNetCore.Mvc;
|
|
|
|
namespace TG_Bot_Template.Controllers
|
|
{
|
|
[ApiController]
|
|
[Route("[controller]")]
|
|
public class ExampleController : ControllerBase
|
|
{
|
|
|
|
}
|
|
}
|