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