using Features.Auth.Repository; using Features.Auth.Services; using Infrastructure.PasswordHashing; using Microsoft.Extensions.DependencyInjection; namespace Features.Auth.DependencyInjection; /// /// Registers the services owned by the Auth feature slice. /// public static class FeaturesAuthServiceCollectionExtensions { public static IServiceCollection AddFeaturesAuth(this IServiceCollection services) { services.AddScoped(); services.AddScoped(); services.AddScoped(); return services; } }