APISAvant4 / app.py
antonypamo's picture
Upload folder using huggingface_hub
b0985e0 verified
raw
history blame contribute delete
90 Bytes
from fastapi import FastAPI
app=FastAPI()
@app.get('/')
def root(): return {'status':'ok'}