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