temple / app.py
Fasika
Add application file
a6e5f2e
raw
history blame
109 Bytes
from fastapi import FastAPI
app = FastAPI()
@app.get("/")
def greet_json():
return {"Hello": "World!"}