mirror of
https://github.com/fastapi/fastapi.git
synced 2026-06-19 21:08:47 -04:00
8 lines
182 B
Python
8 lines
182 B
Python
from fastapi import APIRouter, FastAPI
|
|
|
|
app = FastAPI()
|
|
router = APIRouter()
|
|
|
|
router.frontend("/", directory="dist", fallback="index.html")
|
|
app.include_router(router, prefix="/app")
|