feat: implement jetstream filestore recovery baseline

This commit is contained in:
Joseph Doherty
2026-02-23 06:00:42 -05:00
parent 64e3b1bd49
commit 788f4254b0
4 changed files with 130 additions and 0 deletions

View File

@@ -0,0 +1,6 @@
namespace NATS.Server.JetStream.Storage;
public sealed class FileStoreOptions
{
public string Directory { get; set; } = string.Empty;
}