2026-01-09 17:32:54 -05:00

18 lines
343 B
Python

from fastapi import FastAPI
from fastapi.middleware.cors import CORSMiddleware
app = FastAPI()
app.add_middleware(
CORSMiddleware,
allow_origins=["*"],
allow_credentials=True,
allow_methods=["*"],
allow_headers=["*"],
)
@app.get("/hello")
@app.get("/api/hello")
def hello():
return {"message": "Hello from FastAPI"}