Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
dnext
/
rfp_telegram_bot_old
like
0
Paused
App
Files
Files
Community
1
Fetching metadata from the HF Docker repository...
main
rfp_telegram_bot_old
/
app.py
cevheri
Create app.py
845aaf2
verified
2 months ago
raw
Copy download link
history
blame
contribute
delete
Safe
109 Bytes
from
fastapi
import
FastAPI
app = FastAPI()
@app.get(
"/"
)
def
greet_json
():
return
{
"Hello"
:
"World!"
}