Hugging Face
Models
Datasets
Spaces
Posts
Docs
Solutions
Pricing
Log In
Sign Up
Spaces:
kenken999
/
fastapi_django_main_live
like
4
Running
on
Zero
App
Files
Files
Community
41c0212
fastapi_django_main_live
/
workspace
/
main.py
kenken999
test
a59067e
5 months ago
raw
Copy download link
history
blame
153 Bytes
from
fastapi
import
FastAPI, APIRouter
router = APIRouter()
@router.get(
"/"
)
def
read_root
():
return
{
"message"
:
"Welcome to this fantastic app!"
}