9 lines
177 B
C#
9 lines
177 B
C#
using Telegram.Bot.Types;
|
|
|
|
namespace GmRelay.Bot.Infrastructure.Telegram;
|
|
|
|
public interface ITelegramUpdateHandler
|
|
{
|
|
Task RouteAsync(Update update, CancellationToken ct);
|
|
}
|