aboutsummaryrefslogtreecommitdiff
path: root/.venv/lib/python3.12/site-packages/propcache/api.py
diff options
context:
space:
mode:
Diffstat (limited to '.venv/lib/python3.12/site-packages/propcache/api.py')
-rw-r--r--.venv/lib/python3.12/site-packages/propcache/api.py8
1 files changed, 8 insertions, 0 deletions
diff --git a/.venv/lib/python3.12/site-packages/propcache/api.py b/.venv/lib/python3.12/site-packages/propcache/api.py
new file mode 100644
index 00000000..22389e63
--- /dev/null
+++ b/.venv/lib/python3.12/site-packages/propcache/api.py
@@ -0,0 +1,8 @@
+"""Public API of the property caching library."""
+
+from ._helpers import cached_property, under_cached_property
+
+__all__ = (
+ "cached_property",
+ "under_cached_property",
+)