using Volo.Abp.AspNetCore.Serilog; using Volo.Abp.Modularity; using Volo.Abp.Swashbuckle; namespace EShopOnAbp.Shared.Hosting.AspNetCore; [DependsOn( typeof(EShopOnAbpSharedHostingModule), typeof(AbpSwashbuckleModule), typeof(AbpAspNetCoreSerilogModule) )] public class EShopOnAbpSharedHostingAspNetCoreModule : AbpModule { public override void ConfigureServices(ServiceConfigurationContext context) { } }