oc_p5-dev / app.py
ASI-Engineer's picture
Upload folder using huggingface_hub
572fd8e verified
raw
history blame
110 Bytes
from fastapi import FastAPI
app = FastAPI()
@app.get("/")
def root():
return {"status": "Hello World"}