Kiel_models / app.py
KielTech's picture
Create app.py
aedc20d verified
raw
history blame contribute delete
113 Bytes
from fastapi import FastAPI
app = FastAPI()
@app.get("/")
def greet_json():
return {"Hello": "World!"}