using Hutopy.Web.Features.Contents.Data; using Hutopy.Web.Features.Contents.Handlers; namespace Hutopy.Web.Features.Contents; public static class DependencyInjection { public static WebApplicationBuilder AddContentModule( this WebApplicationBuilder builder, Action? configureAction = null) { builder.Services.AddDbContext(configureAction); builder.Services.AddScoped(); builder.Services.Configure(builder.Configuration.GetSection(ContentOptions.ConfigurationSection)); return builder; } }