20 lines
431 B
C#
20 lines
431 B
C#
using CH.CQRS.Command.User;
|
|
using Microsoft.Extensions.DependencyInjection;
|
|
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)
|
|
{
|
|
services.AddUserCommand();
|
|
|
|
return services;
|
|
}
|
|
}
|