from fastapi import FastAPI, Request app = FastAPI() @app.route("/hello") async def hello(): return {"hello": "world"} ...
確定! 回上一頁