from fastapi import FastAPI from pydantic import BaseModel class Item(BaseModel): aa: float bb: float app = FastAPI() @app.post("/sum/") ...
確定! 回上一頁