from fastapi import APIRouter from . import house router = APIRouter(prefix='/house') router.include_router(house.public_router)