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