Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
xcx0902
/
discord-bot
like
0
Running
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
46bd13a
discord-bot
/
keepalive.py
xcx0902
Upload folder using huggingface_hub
46bd13a
verified
about 1 month ago
raw
Copy download link
history
blame
Safe
119 Bytes
from
fastapi
import
FastAPI
keepalive = FastAPI()
@keepalive.get(
"/"
)
def
root
():
return
{
"Hello"
:
"World"
}