2025-01-06 15:17:59 -05:00
|
|
|
|
using Microsoft.Extensions.DependencyInjection;
|
|
|
|
|
using OpenHarbor.CQRS.DynamicQuery.Abstractions;
|
|
|
|
|
using PoweredSoft.Data.Core;
|
|
|
|
|
using PoweredSoft.Module.Abstractions;
|
|
|
|
|
|
|
|
|
|
namespace CH.CryptoStats.CoinMarketCap;
|
|
|
|
|
|
2025-01-06 16:11:11 -05:00
|
|
|
|
public class CoinMarketCapModule : IModule
|
2025-01-06 15:17:59 -05:00
|
|
|
|
{
|
|
|
|
|
public IServiceCollection ConfigureServices(IServiceCollection services)
|
|
|
|
|
{
|
2025-01-07 16:12:44 -05:00
|
|
|
|
services.AddScoped<CoinMarketCapService>();
|
2025-01-06 15:17:59 -05:00
|
|
|
|
return services;
|
|
|
|
|
}
|
|
|
|
|
}
|