from fastapi import FastAPI my_app = FastAPI() @my_app.post("/getInformation") def getInformation(): return { "status" : "SUCCESS", ...
確定! 回上一頁