fastapi / app.py
mobixconsulting's picture
Create app.py
ba8d6b9 verified
raw
history blame
106 Bytes
from fastapi import FastAPI
app = FastAPI()
@app.get("/hello")
def hello():
return {"hello":"wordl"}