using Features.UserManagement.Repository;
using Microsoft.Extensions.DependencyInjection;
namespace Features.UserManagement.DependencyInjection;
///
/// Registers the services owned by the UserManagement feature slice.
///
public static class FeaturesUserManagementServiceCollectionExtensions
{
public static IServiceCollection AddFeaturesUserManagement(this IServiceCollection services)
{
services.AddScoped();
return services;
}
}