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

18 lines
412 B
C#
Raw Normal View History

2023-09-01 22:26:25 +00:00
using BotSharp.Abstraction.Instructs;
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 ILogger<InstructService> _logger;
2023-09-01 22:26:25 +00:00
2024-10-17 23:17:38 +00:00
public InstructService(
IServiceProvider services,
ILogger<InstructService> logger)
2023-09-01 22:26:25 +00:00
{
_services = services;
_logger = logger;
}
}