# Backend API routers - boundary commission, etc.
# Lazy import to avoid circular deps
def get_boundary_router():
    from backend.api.boundary import router
    return router

__all__ = ["get_boundary_router"]
