using Microsoft.Extensions.DependencyInjection; namespace AipGateway.API.Application.Modules { public static class Dependencyinjection { public static IServiceCollection AddModules(this IServiceCollection services) { //services.AddScoped() // .AddScoped() // .AddScoped(); return services; } } }