19 lines
373 B
C#
19 lines
373 B
C#
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)
|
|
{
|
|
|
|
|
|
return services;
|
|
}
|
|
}
|