discord-bot / keepalive.py
xcx0902's picture
Upload folder using huggingface_hub
f146db9 verified
raw
history blame
107 Bytes
from fastapi import FastAPI
app = FastAPI()
@app.get("/")
def root():
return {"Hello": "World"}