feat: add route propagation and bootstrap js gateway leaf services
This commit is contained in:
11
src/NATS.Server/Gateways/GatewayConnection.cs
Normal file
11
src/NATS.Server/Gateways/GatewayConnection.cs
Normal file
@@ -0,0 +1,11 @@
|
||||
namespace NATS.Server.Gateways;
|
||||
|
||||
public sealed class GatewayConnection
|
||||
{
|
||||
public string RemoteEndpoint { get; }
|
||||
|
||||
public GatewayConnection(string remoteEndpoint)
|
||||
{
|
||||
RemoteEndpoint = remoteEndpoint;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user