using Microsoft.Extensions.DependencyInjection; using OpenHarbor.CQRS.FluentValidation; namespace CH.CQRS.Command.User; public static class ServiceCollectionExtension { public static IServiceCollection AddUserCommand(this IServiceCollection services) { services.AddCommand(); services.AddCommand(); return services; } }