Coverage for src / kemi / core.py: 100%

3 statements  

« prev     ^ index     » next       coverage.py v7.13.5, created at 2026-06-05 15:47 +0000

1"""Public re-export of the Memory class. 

2 

3The implementation has been split out of a monolithic ``core.py`` into: 

4 - :mod:`kemi._memory_impl` — the ``Memory`` class itself 

5 - :mod:`kemi.operations` — extracted free functions for versioning, 

6 webhooks, hooks, cache, metrics, and audit 

7 - :mod:`kemi.operations._query_cache` — the LRU query cache 

8""" 

9 

10from kemi._memory_impl import Memory 

11from kemi.operations._query_cache import _QueryCache 

12 

13__all__ = ["Memory", "_QueryCache"]