using Bit.Commercial.Core.SecretManagerFeatures.AccessTokens; using Bit.Commercial.Core.SecretManagerFeatures.Projects; using Bit.Commercial.Core.SecretManagerFeatures.Secrets; using Bit.Commercial.Core.SecretManagerFeatures.ServiceAccounts; using Bit.Core.SecretManagerFeatures.AccessTokens.Interfaces; using Bit.Core.SecretManagerFeatures.Projects.Interfaces; using Bit.Core.SecretManagerFeatures.Secrets.Interfaces; using Bit.Core.SecretManagerFeatures.ServiceAccounts.Interfaces; using Microsoft.Extensions.DependencyInjection; namespace Bit.Commercial.Core.SecretManagerFeatures; public static class SecretManagerCollectionExtensions { public static void AddSecretManagerServices(this IServiceCollection services) { services.AddScoped(); services.AddScoped(); services.AddScoped(); services.AddScoped(); services.AddScoped(); services.AddScoped(); services.AddScoped(); services.AddScoped(); services.AddScoped(); } }