""" API路由模块 """ from flask import Blueprint graph_bp = Blueprint('graph', __name__) from . import graph # noqa: E402, F401