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 JetStreamOptions
{
public string StoreDir { get; set; } = string.Empty;
public long MaxMemoryStore { get; set; }
public long MaxFileStore { get; set; }
}