# ruff: noqa: E402, F401, I001 from flask import Blueprint bp = Blueprint("system", __name__) from app.api.system import governance_audit # noqa: E402, F401 from app.api.system import enterprise_identity # noqa: E402, F401 from app.api.system import bi_ai_catalog_routes # noqa: E402, F401 from app.api.system import metering_showback_routes # noqa: E402, F401 from app.api.system import plugin_platform_routes # noqa: E402, F401 from app.api.system import responsibilities # noqa: E402, F401 from app.api.system import routes # noqa: E402, F401 from app.api.system import security_governance # noqa: E402, F401 from app.api.system import trusted_delivery # noqa: E402, F401 from app.api.system import trusted_delivery_controls # noqa: E402, F401 from app.api.system import tenant_routes # noqa: E402, F401 from app.api.system import users # noqa: E402, F401 from app.api.system import workbench # noqa: E402, F401 from app.api.system import work_center # noqa: E402, F401