mirror of
https://github.com/RaidMax/IW4M-Admin.git
synced 2025-06-08 14:18:20 -05:00
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;
|
|
}
|
|
}
|
|
} |