2025-01-03 15:38:14 -05:00
|
|
|
|
using CH.CQRS.Command.User;
|
|
|
|
|
using Microsoft.Extensions.DependencyInjection;
|
2025-01-02 17:53:38 -05:00
|
|
|
|
using PoweredSoft.Module.Abstractions;
|
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace CH.CQRS;
|
|
|
|
|
public class CommandModule : IModule
|
|
|
|
|
{
|
|
|
|
|
public IServiceCollection ConfigureServices(IServiceCollection services)
|
|
|
|
|
{
|
2025-01-03 15:38:14 -05:00
|
|
|
|
services.AddUserCommand();
|
2025-01-02 17:53:38 -05:00
|
|
|
|
|
|
|
|
|
return services;
|
|
|
|
|
}
|
|
|
|
|
}
|