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