using Codex.CQRS.Commands; using Microsoft.Extensions.DependencyInjection; using OpenHarbor.CQRS; using OpenHarbor.CQRS.FluentValidation; using PoweredSoft.Module.Abstractions; namespace Codex.CQRS; public class CommandsModule : IModule { public IServiceCollection ConfigureServices(IServiceCollection services) { // Agent commands services.AddCommand(); services.AddCommand(); services.AddCommand(); // Conversation commands services.AddCommand(); // Agent execution commands services.AddCommand(); services.AddCommand(); return services; } }