| 1234567891011 |
- """hypercorn 入口 —— 最简 Quart 服务
- 启动方式:
- hypercorn app:app --bind 0.0.0.0:8000
- """
- from supply.server import create_app, server_routes, xxl_routes
- app = create_app()
- app.register_blueprint(server_routes())
- app.register_blueprint(xxl_routes()) # XXL-JOB 端点挂在根路径 /beat /run 等
|