output integration types
This commit is contained in:
@@ -0,0 +1,17 @@
|
||||
using Microsoft.Extensions.Configuration;
|
||||
using Microsoft.Extensions.DependencyInjection;
|
||||
|
||||
namespace zero.Api.Endpoints.Integrations;
|
||||
|
||||
public class IntegrationModule : ZeroModule
|
||||
{
|
||||
public override void ConfigureServices(IServiceCollection services, IConfiguration configuration)
|
||||
{
|
||||
services.AddSingleton<IMapperProfile, IntegrationMapperProfile>();
|
||||
|
||||
//services.Configure<RavenOptions>(opts =>
|
||||
//{
|
||||
// opts.Indexes.Add<zero_Api_Languages_Listing>();
|
||||
//});
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user