mychatbot / main.py
ChihChiu29's picture
try again
2103519
raw
history blame
109 Bytes
from fastapi import FastAPI
app = FastAPI()
@app.get("/")
def read_root():
return {"Hello": "World!"}