feat(etl-cache): expose cache persistence layer

This commit is contained in:
CREDO23 2026-06-12 11:22:57 +02:00
parent ea10127979
commit 8d3238bcd1

View file

@ -0,0 +1,11 @@
"""Database access for cached parse rows."""
from __future__ import annotations
from .models import CachedParse
from .repository import CachedParseRepository
__all__ = [
"CachedParse",
"CachedParseRepository",
]