15 lines
411 B
C#
15 lines
411 B
C#
|
using Integrations.Source.Interfaces;
|
|||
|
using Microsoft.Extensions.DependencyInjection;
|
|||
|
|
|||
|
namespace Integrations.Source.Extensions
|
|||
|
{
|
|||
|
public static class IntegrationServicesExtensions
|
|||
|
{
|
|||
|
public static IServiceCollection AddSource(this IServiceCollection services)
|
|||
|
{
|
|||
|
services.AddSingleton<IRConClientFactory, RConClientFactory>();
|
|||
|
|
|||
|
return services;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|