constellation-api/CH.CQRS/QueryModule.cs

18 lines
370 B
C#
Raw Normal View History

2025-01-02 17:53:38 -05:00
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;
}
}