using BotPages.Core;
namespace BotPages.Telegram;
///
/// Расширения для .
///
public static class BotPagesAppExtension
{
///
/// Добавление адаптера для телеграмм в
///
///
///
///
public static BotPagesApp AddTelegramAdapter(this BotPagesApp app, string token)
{
var telegram = new TelegramAdapter(app.Logger, token);
app.AddAdapter(telegram.MessagerType, telegram);
return app;
}
}