texttosql_cn / main.py
clarkchan's picture
begin
621a0dc
raw
history blame contribute delete
108 Bytes
from fastapi import FastAPI
app = FastAPI()
@app.get("/")
def read_root():
return {"Hello": "World!"}