api.py 179 B

12345678
  1. """Public API of the property caching library."""
  2. from ._helpers import cached_property, under_cached_property
  3. __all__ = (
  4. "cached_property",
  5. "under_cached_property",
  6. )