namespace Telegrator.Hosting.Components
{
///
/// 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.
///
public interface IPreBuildingRoutine
{
///
/// Executes the pre-building routine on the specified host builder.
///
/// The host builder to configure.
public static abstract void PreBuildingRoutine(TelegramBotHostBuilder hostBuilder);
}
}