feat(etl-cache): expose cache schema value objects

This commit is contained in:
CREDO23 2026-06-12 11:22:48 +02:00
parent 3c9ea0011d
commit b84debd999

View file

@ -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",
]