mirror of
https://github.com/MODSetter/SurfSense.git
synced 2026-06-12 20:45:20 +02:00
feat(etl-cache): expose cache persistence layer
This commit is contained in:
parent
ea10127979
commit
8d3238bcd1
1 changed files with 11 additions and 0 deletions
11
surfsense_backend/app/etl_pipeline/cache/persistence/__init__.py
vendored
Normal file
11
surfsense_backend/app/etl_pipeline/cache/persistence/__init__.py
vendored
Normal 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",
|
||||
]
|
||||
Loading…
Add table
Add a link
Reference in a new issue