constellation-api/CH.CQRS/SharedModule.cs

17 lines
432 B
C#
Raw Normal View History

using CH.CQRS.Service.CryptoStats;
using CH.CQRS.Service.User;
using CH.CryptoStats.Abstractions;
using Microsoft.Extensions.DependencyInjection;
2025-01-02 17:53:38 -05:00
using PoweredSoft.Module.Abstractions;
namespace CH.CQRS;
public class SharedModule : IModule
{
public IServiceCollection ConfigureServices(IServiceCollection services)
{
services.AddScoped<UserService>();
services.AddScoped<CryptoService>();
2025-01-02 17:53:38 -05:00
return services;
}
}