using Telegrator.MadiatorCore;
namespace Telegrator.Hosting.Providers.Components
{
///
/// Collection class for managing handler descriptors organized by update type for host apps.
/// Provides functionality for collecting, adding, scanning, and organizing handlers.
///
public interface IHostHandlersCollection : IHandlersCollection
{
///
/// List of tasks that should be completed right before building the bot
///
public List PreBuilderRoutines { get; }
}
}