Release 1.0.12
Refactor: Move IHost implementation to IBot interface The BotApp class no longer implements the IHost interface directly. Instead, the IBot interface now extends IHost, centralizing hosting responsibilities within the IBot interface. This change ensures that any class implementing IBot will also need to implement IHost. Additionally, the necessary using directive for Microsoft.Extensions.Hosting was added to IBot.cs.