feat(etl-cache): expose storage layer

This commit is contained in:
CREDO23 2026-06-12 11:23:40 +02:00
parent a6f2457c7c
commit 87fdb37fa3

View file

@ -0,0 +1,9 @@
"""Blob storage for cached parse markdown."""
from __future__ import annotations
from .markdown_store import MarkdownCacheStore
__all__ = [
"MarkdownCacheStore",
]