Fix solution build

This commit is contained in:
2025-07-30 20:37:24 +07:00
parent 3de8b5e00e
commit 1071730978
7 changed files with 36 additions and 69 deletions

View File

@@ -2,7 +2,6 @@
using Managing.Application.Abstractions.Services;
using Managing.Application.ManageBot;
using Managing.Domain.Bots;
using Managing.Domain.Workflows;
using Microsoft.Extensions.Logging;
namespace Managing.Application.Bots.Base
@@ -35,11 +34,6 @@ namespace Managing.Application.Bots.Base
_backupBotService = backupBotService;
}
IBot IBotFactory.CreateSimpleBot(string botName, Workflow workflow)
{
return new SimpleBot(botName, _tradingBotLogger, workflow, _botService, _backupBotService);
}
public async Task<ITradingBot> CreateTradingBot(TradingBotConfig config)
{
// Delegate to BotService which handles scenario loading properly