2025-07-24 23:19:59 +04:00
|
|
|
using Microsoft.Extensions.Configuration;
|
|
|
|
|
using Microsoft.Extensions.DependencyInjection;
|
2025-07-28 20:35:48 +04:00
|
|
|
using Microsoft.Extensions.Hosting;
|
2025-07-24 23:19:59 +04:00
|
|
|
using Microsoft.Extensions.Logging;
|
|
|
|
|
using Telegrator.MadiatorCore;
|
|
|
|
|
|
|
|
|
|
namespace Telegrator.Hosting.Components
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Interface for building Telegram bot hosts with dependency injection support.
|
|
|
|
|
/// Combines host application building capabilities with handler collection functionality.
|
|
|
|
|
/// </summary>
|
|
|
|
|
public interface ITelegramBotHostBuilder : ICollectingProvider
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets the set of key/value configuration properties.
|
|
|
|
|
/// </summary>
|
|
|
|
|
IConfigurationManager Configuration { get; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets a collection of logging providers for the application to compose. This is useful for adding new logging providers.
|
|
|
|
|
/// </summary>
|
|
|
|
|
ILoggingBuilder Logging { get; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets a collection of services for the application to compose. This is useful for adding user provided or framework provided services.
|
|
|
|
|
/// </summary>
|
|
|
|
|
IServiceCollection Services { get; }
|
|
|
|
|
}
|
|
|
|
|
}
|