from fastapi import FastAPI from pydantic import BaseModel app = FastAPI() class ItemModel(BaseModel): name: str @app.post("/") async def ...
確定! 回上一頁