feat: parse cluster and jetstream config blocks

This commit is contained in:
Joseph Doherty
2026-02-23 05:43:04 -05:00
parent d9f157d9e4
commit 44d426a7c5
7 changed files with 244 additions and 1 deletions

View File

@@ -0,0 +1,8 @@
namespace NATS.Server.Configuration;
public sealed class GatewayOptions
{
public string? Name { get; set; }
public string Host { get; set; } = "0.0.0.0";
public int Port { get; set; }
}