""" Core functionality blueprint for the NetViz application. """ from flask import Blueprint core_bp = Blueprint("core", __name__) from app.core import routes # noqa