constellation-api/CH.CryptoStats.CoinGecko/CoinGeckoModule.cs

16 lines
397 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 CoinGeckoModule : IModule
{
public IServiceCollection ConfigureServices(IServiceCollection services)
{
services.AddScoped<CoinGeckoService>();
return services;
}
}