Files
hello-fastapi/app.py
2024-06-12 09:04:50 +02:00

7 lines
121 B
Python

from fastapi import FastAPI
app = FastAPI(port=8080)
@app.get("/")
def index():
return {"message": "Hello, World!"}