Files
fastapi/docs_src/app_testing/app_a_py39/main.py
2025-12-17 21:41:43 +01:00

9 lines
118 B
Python

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