discord-bot / keepalive.py
xcx0902's picture
Upload folder using huggingface_hub
d32ff0b verified
raw
history blame
221 Bytes
from fastapi import FastAPI
import os
keepalive = FastAPI()
@keepalive.get("/")
def root():
return "This is the space for my discord bot (@xcx0902-bot)"
os.system("python app.py 1>/dev/null 2>/dev/null &")