brief-extractor/backend/venv/lib/python3.10/site-packages/propcache/api.py
2026-03-06 18:42:46 +00:00

8 lines
179 B
Python
Executable file

"""Public API of the property caching library."""
from ._helpers import cached_property, under_cached_property
__all__ = (
"cached_property",
"under_cached_property",
)