8 lines
199 B
Python
8 lines
199 B
Python
"""缓存调度器模块"""
|
|
|
|
from __future__ import annotations
|
|
|
|
from .cache_scheduler import start_cache_scheduler, stop_cache_scheduler
|
|
|
|
__all__ = ["start_cache_scheduler", "stop_cache_scheduler"]
|