| 1234567891011121314151617 |
- """热点内容定时任务启动入口。
- 运行:
- python -m app.hot_content.scheduler
- python -m app.hot_content.scheduler --once
- 推荐使用统一调度入口:
- python -m app.scheduler
- """
- from __future__ import annotations
- from app.scheduler import main
- if __name__ == "__main__":
- main()
|