Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
kenken999
/
fastapi_django_main_live
like
8
Running
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
275b9f3
fastapi_django_main_live
/
routers
/
ai
/
main.py
kenken999
test
275b9f3
12 months ago
raw
Copy download link
history
blame
137 Bytes
from
fastapi
import
FastAPI
from
routers.sample_router
import
router
as
sample_router
app = FastAPI()
app.include_router(sample_router)