mirror of
https://github.com/aljazceru/hello-fastapi.git
synced 2025-12-18 22:44:24 +01:00
7 lines
121 B
Python
7 lines
121 B
Python
from fastapi import FastAPI
|
|
|
|
app = FastAPI(port=8080)
|
|
|
|
@app.get("/")
|
|
def index():
|
|
return {"message": "Hello, World!"} |