__init__.py 251 B

12345678910
  1. # -*- coding: utf-8 -*-
  2. """
  3. descriptor 包用于存放与 AOP/注解语义相关的工具。
  4. """
  5. from .custom_cacheable import custom_cacheable
  6. from .custom_cache_evict import custom_cache_evict
  7. __all__ = ["custom_cacheable", "custom_cache_evict"]