mirror of
https://github.com/chylex/Minecraft-Phantom-Panel.git
synced 2024-11-24 22:42:53 +01:00
9 lines
271 B
C#
9 lines
271 B
C#
using NetMQ;
|
|
using Serilog;
|
|
|
|
namespace Phantom.Utils.Rpc;
|
|
|
|
public sealed record RpcConfiguration(ILogger RuntimeLogger, ILogger TaskManagerLogger, string Host, ushort Port, NetMQCertificate ServerCertificate) {
|
|
public string TcpUrl => "tcp://" + Host + ":" + Port;
|
|
}
|