2023-programowanie-w-pythonie/zajecia4/fastapi_examples/simple.py
2023-11-25 20:37:12 +01:00

9 lines
117 B
Python

from fastapi import FastAPI
app = FastAPI()
@app.get("/")
async def root():
return {"message": "Hello World"}