hf_space / main.py
Miakat
Rename app.py to main.py
68691cc verified
raw
history blame contribute delete
107 Bytes
from fastapi import FastAPI
app = FastAPI()
@app.get("/")
def read_root():
return {"Hello": "World!"}