7 lines
170 B
Python
7 lines
170 B
Python
from fastapi import APIRouter
|
|
|
|
from app.api.endpoints import people
|
|
|
|
api_router = APIRouter()
|
|
api_router.include_router(people.router, prefix="/people", tags=["people"])
|