import logging from fastapi import FastAPI logger = logging.getLogger('uvicorn.access') app = FastAPI() debug = True @app.get("/") def index(): ...
確定! 回上一頁