app.py import uvicorn from fastapi import FastAPI app = FastAPI() @app.get('/') def home(): return {'hello': 'world'} if __name__ ...
確定! 回上一頁