mirror of
https://github.com/bitwarden/server
synced 2025-12-26 21:23:39 +00:00
12 lines
316 B
C#
12 lines
316 B
C#
using Microsoft.Extensions.DependencyInjection;
|
|
|
|
namespace Bit.Commercial.Core.SecretsManager;
|
|
|
|
public static class SecretsManagerServiceCollectionExtensions
|
|
{
|
|
public static void AddCommercialSecretsManagerServices(this IServiceCollection services)
|
|
{
|
|
services.AddSecretsManagerServices();
|
|
}
|
|
}
|