From b84debd99917ecce372a207d82774002748f37a2 Mon Sep 17 00:00:00 2001 From: CREDO23 Date: Fri, 12 Jun 2026 11:22:48 +0200 Subject: [PATCH] feat(etl-cache): expose cache schema value objects --- .../app/etl_pipeline/cache/schemas/__init__.py | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 surfsense_backend/app/etl_pipeline/cache/schemas/__init__.py diff --git a/surfsense_backend/app/etl_pipeline/cache/schemas/__init__.py b/surfsense_backend/app/etl_pipeline/cache/schemas/__init__.py new file mode 100644 index 000000000..c88ac0c72 --- /dev/null +++ b/surfsense_backend/app/etl_pipeline/cache/schemas/__init__.py @@ -0,0 +1,11 @@ +"""Pure value objects for the parse cache.""" + +from __future__ import annotations + +from .eviction_candidate import EvictionCandidate +from .parse_key import ParseKey + +__all__ = [ + "EvictionCandidate", + "ParseKey", +]