BotSharp/src/Infrastructure/BotSharp.Core/Instructs/InstructService.cs

22 lines
556 B
C#
Raw Normal View History

2023-09-01 22:26:25 +00:00
using BotSharp.Abstraction.Instructs;
2024-10-17 23:17:38 +00:00
using BotSharp.Abstraction.Options;
2023-12-15 16:31:11 +00:00
2023-09-01 22:26:25 +00:00
namespace BotSharp.Core.Instructs;
public partial class InstructService : IInstructService
{
private readonly IServiceProvider _services;
2024-10-17 23:17:38 +00:00
private readonly BotSharpOptions _options;
private readonly ILogger<InstructService> _logger;
2023-09-01 22:26:25 +00:00
2024-10-17 23:17:38 +00:00
public InstructService(
IServiceProvider services,
BotSharpOptions options,
ILogger<InstructService> logger)
2023-09-01 22:26:25 +00:00
{
_services = services;
2024-10-17 23:17:38 +00:00
_options = options;
2023-09-01 22:26:25 +00:00
_logger = logger;
}
}