mirror of
https://github.com/rjNemo/fastapi
synced 2026-06-06 10:36:39 +00:00
9 lines
224 B
Python
9 lines
224 B
Python
from fastapi import FastAPI
|
|
|
|
from .tutorial74 import router as users_router
|
|
from .tutorial75 import router as items_router
|
|
|
|
app = FastAPI()
|
|
|
|
app.include_router(users_router)
|
|
app.include_router(items_router, prefix="/items")
|