mirror of
https://github.com/bitwarden/server.git
synced 2026-01-31 06:03:12 +08:00
15 lines
391 B
C#
15 lines
391 B
C#
using Bit.Commercial.Core.Services;
|
|
using Bit.Core.Services;
|
|
using Microsoft.Extensions.DependencyInjection;
|
|
|
|
namespace Bit.Commercial.Core.Utilities
|
|
{
|
|
public static class ServiceCollectionExtensions
|
|
{
|
|
public static void AddCommCoreServices(this IServiceCollection services)
|
|
{
|
|
services.AddScoped<IProviderService, ProviderService>();
|
|
}
|
|
}
|
|
}
|