BotSharp/src/Infrastructure/BotSharp.Core/Instructs/InstructService.cs
2024-10-17 18:17:38 -05:00

22 lines
556 B
C#

using BotSharp.Abstraction.Instructs;
using BotSharp.Abstraction.Options;
namespace BotSharp.Core.Instructs;
public partial class InstructService : IInstructService
{
private readonly IServiceProvider _services;
private readonly BotSharpOptions _options;
private readonly ILogger<InstructService> _logger;
public InstructService(
IServiceProvider services,
BotSharpOptions options,
ILogger<InstructService> logger)
{
_services = services;
_options = options;
_logger = logger;
}
}