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