mirror of
https://github.com/fastapi/fastapi.git
synced 2026-01-06 13:08:12 -05:00
* ✏️ Fix typo in security intro * ✨ Add testing docs and tests * 🐛 Debug Travis coverage * 🐛 Debug Travis coverage, report XML * 💚 Make Travis/Flit use same code install * ⏪ Revert Travis/Codecov debugging changes
9 lines
118 B
Python
9 lines
118 B
Python
from fastapi import FastAPI
|
|
|
|
app = FastAPI()
|
|
|
|
|
|
@app.get("/")
|
|
async def read_main():
|
|
return {"msg": "Hello World"}
|