BotSharp/src/Infrastructure/BotSharp.Core/Instructs/InstructService.cs
Haiping Chen 2dbe6c4853 rules
2025-01-02 15:29:30 -06:00

18 lines
412 B
C#

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