18 lines
370 B
C#
18 lines
370 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 QueryModule : IModule
|
|||
|
{
|
|||
|
public IServiceCollection ConfigureServices(IServiceCollection services)
|
|||
|
{
|
|||
|
|
|||
|
return services;
|
|||
|
}
|
|||
|
}
|