16 lines
409 B
C#
16 lines
409 B
C#
using Microsoft.Extensions.DependencyInjection;
|
|
using OpenHarbor.CQRS.DynamicQuery.Abstractions;
|
|
using PoweredSoft.Data.Core;
|
|
using PoweredSoft.Module.Abstractions;
|
|
|
|
namespace CH.CryptoStats.CoinMarketCap;
|
|
|
|
public class CoinMarketCapModule : IModule
|
|
{
|
|
public IServiceCollection ConfigureServices(IServiceCollection services)
|
|
{
|
|
services.AddScoped<CoinMarketCapService>();
|
|
return services;
|
|
}
|
|
}
|