Skip to content

Release 1.0.12

Choose a tag to compare

@bvdcode bvdcode released this 02 Aug 19:51
· 66 commits to main since this release
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.