scheduler.py 316 B

1234567891011121314151617
  1. """热点内容定时任务启动入口。
  2. 运行:
  3. python -m app.hot_content.scheduler
  4. python -m app.hot_content.scheduler --once
  5. 推荐使用统一调度入口:
  6. python -m app.scheduler
  7. """
  8. from __future__ import annotations
  9. from app.scheduler import main
  10. if __name__ == "__main__":
  11. main()