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