Files
2025-09-18 17:55:52 -04:00

15 lines
434 B
C#

using Roblox.Grid.Arbiter.Common.Arbiter;
namespace Roblox.Grid.Arbiter.Common
{
public class ArbiterServiceUtils
{
public static ArbiterClient GetService(string Address) => GetService(Address, 64990);
public static ArbiterClient GetService(string Address, int port)
{
if (Address == null) return null;
return new ArbiterClient("RccServiceMonitor", "http://" + Address + ":" + port.ToString());
}
}
}