Files
fastapi/docs_src/app_testing/app_a_py310/main.py
2026-02-12 00:28:41 +01:00

9 lines
118 B
Python

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