Move demo code to package, add makefile

This commit is contained in:
Colin Goutte 2021-09-22 10:10:34 +02:00
parent 732781bce6
commit 39a44c9a6e
2 changed files with 21 additions and 0 deletions

6
Makefile Normal file
View File

@ -0,0 +1,6 @@
.ONESHELL:
serve:
poetry run uvicorn papi.main:app

15
papi/main.py Normal file
View File

@ -0,0 +1,15 @@
from typing import Optional
from fastapi import FastAPI
app = FastAPI()
@app.get("/")
def read_root():
return {"Hello": "World"}
@app.get("/items/{item_id}")
def read_item(item_id: int, q: Optional[str] = None):
return {"item_id": item_id, "q": q}