mirror of
https://github.com/Bubuni-Team/telegram-bot.git
synced 2026-07-31 00:29:24 +03:00
19 lines
394 B
C#
19 lines
394 B
C#
using System.Threading;
|
|
using System.Threading.Tasks;
|
|
using BotFramework.Abstractions.UpdateProvider;
|
|
|
|
namespace Kruzya.TelegramBot.Core;
|
|
|
|
public class WebhookDummyProvider : IWebhookProvider
|
|
{
|
|
public Task StartAsync(CancellationToken token)
|
|
{
|
|
return Task.CompletedTask;
|
|
}
|
|
|
|
public Task StopAsync(CancellationToken token)
|
|
{
|
|
return Task.CompletedTask;
|
|
}
|
|
}
|