5320c9ec20
* Fixed wrong LeveldDebug method calls after moving logic from providers to router * Added independent "IndentFlags" property to inner debugger class * Fixed debug logging in few places * Removed "ICollectingOptions" and merged it with new options abstract "ITelegratorOptions" * Added WebHook version of hosting class
16 lines
615 B
C#
16 lines
615 B
C#
namespace Telegrator.Hosting.Components
|
|
{
|
|
/// <summary>
|
|
/// Interface for pre-building routines that can be executed during host construction.
|
|
/// Allows for custom initialization and configuration steps before the bot host is built.
|
|
/// </summary>
|
|
public interface IPreBuildingRoutine
|
|
{
|
|
/// <summary>
|
|
/// Executes the pre-building routine on the specified host builder.
|
|
/// </summary>
|
|
/// <param name="hostBuilder">The host builder to configure.</param>
|
|
public static abstract void PreBuildingRoutine(ITelegramBotHostBuilder hostBuilder);
|
|
}
|
|
}
|