TelegramBots / Telegram.Bot.Framework

Simple framework for building Telegram bots
MIT License
98 stars 43 forks source link

Telegram.Bot vs Telegram.Bot.Framework #23

Closed agat366 closed 5 years ago

agat366 commented 5 years ago

Hi!

I see there are two similar nuget packages created by you, both for Telegram Bot. They both can target asp.net core, thus it's not clear how are they different and when to use each of those.

Could you clarify on that?

MihaZupan commented 5 years ago

Telegram.Bot is the core library for interacting with the bot API. It's a rather simple wrapper over the api. This framework uses Telegram.Bot to build abstractions over the api that make it easier to build bots.

agat366 commented 5 years ago

Thanks!