sql-tutor / app.py
Areid987's picture
Create app.py
1bc2f54 verified
raw
history blame
109 Bytes
from fastapi import fastAPI
app = fastAPI()
app.get("/")
def greet_json():
return { "Hello": "World" }