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