using Socialize.Api.Modules.ContentItems.Contracts; using Socialize.Api.Modules.ContentItems.Services; namespace Socialize.Api.Modules.ContentItems; public static class DependencyInjection { public static WebApplicationBuilder AddContentItemsModule( this WebApplicationBuilder builder) { builder.Services.AddScoped(); return builder; } }