13 lines
300 B
C#
13 lines
300 B
C#
using Integrations.Source.Interfaces;
|
|
using RconSharp;
|
|
|
|
namespace Integrations.Source
|
|
{
|
|
public class RConClientFactory : IRConClientFactory
|
|
{
|
|
public RconClient CreateClient(string hostname, int port)
|
|
{
|
|
return RconClient.Create(hostname, port);
|
|
}
|
|
}
|
|
} |