blog_app_s4p7s/main.py
2025-03-23 18:31:42 +01:00

7 lines
160 B
Python

from fastapi import FastAPI
app = FastAPI(title="Generated Backend")
@app.get("/")
def read_root():
return {"message": "Welcome to the generated backend"}