pagination for backtest and optimization

This commit is contained in:
2025-07-16 14:27:07 +07:00
parent 11778aa2a4
commit f51fd5a5f7
15 changed files with 287 additions and 9 deletions

View File

@@ -149,6 +149,13 @@ public static class ApiBootstrap
services.AddTransient<ICacheService, CacheService>();
services.AddSingleton<ITaskCache, TaskCache>();
// Index Service
services.AddSingleton<IndexService>();
// Services
services.AddTransient<ICacheService, CacheService>();
services.AddSingleton<ITaskCache, TaskCache>();
return services;
}

View File

@@ -181,6 +181,9 @@ public static class WorkersBootstrap
services.AddTransient<ICacheService, CacheService>();
services.AddTransient<ITaskCache, TaskCache>();
// Index Service
services.AddSingleton<IndexService>();
// Processors
services.AddTransient<IExchangeProcessor, EvmProcessor>();