buildroot/support/testing/tests/package/sample_python_fastapi.py

9 lines
117 B
Python

from fastapi import FastAPI
app = FastAPI()
@app.get("/")
async def root():
return {"message": "Hello World"}