app.py 221 B

12345678910
  1. """hypercorn 入口 —— 最简 Quart 服务
  2. 启动方式:
  3. hypercorn app:app --bind 0.0.0.0:8000
  4. """
  5. from supply.server import create_app, server_routes
  6. app = create_app()
  7. app.register_blueprint(server_routes())