app/api.py from fastapi import FastAPI app = FastAPI() @app.get("/", tags=["root"]) async def read_root() -> dict: return {"message": ...
確定! 回上一頁