📝 Update docs, add first tutorials

This commit is contained in:
Sebastián Ramírez
2018-12-14 14:27:02 +04:00
parent 400a4a99af
commit 093bb4cd19
90 changed files with 518 additions and 27 deletions

View File

@@ -0,0 +1,8 @@
from fastapi import FastAPI
app = FastAPI()
@app.get("/")
def root():
return {"message": "Hello World"}