From 52fae8594c077cc66f0842702b8399ddf1e43b46 Mon Sep 17 00:00:00 2001 From: Bernard Siebens Date: Sat, 24 Jan 2026 22:36:06 +0100 Subject: [PATCH] Include `options_map` in snapshot serialization --- main.py | 1 + 1 file changed, 1 insertion(+) diff --git a/main.py b/main.py index 111003d..28b79c1 100644 --- a/main.py +++ b/main.py @@ -53,6 +53,7 @@ async def status(): "last_loaded_at": snapshot.last_loaded_at.isoformat() + "Z", "error_count": len(snapshot.errors), "errors": [str(err) for err in snapshot.errors], + "options": snapshot.options_map, }