demo1 / main.py
JackHack's picture
add main.py
7853b08 verified
raw
history blame contribute delete
107 Bytes
from fastapi import FastAPI
app = FastAPI()
@app.get("/")
def read_root():
return {"Hello": "World!"}