nextjs-fastapi/api/index.py
2023-05-26 09:35:06 -06:00

7 lines
No EOL
126 B
Python

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